JavaScript string.valueOf() Method
Below is the example of the string.valueOf() Method.
- Example:
javascript
<script> var a = new String( "GeeksforGeeks" ); document.write(a.valueOf()); </script> |
- Output:
GeeksforGeeks
The string.valueOf() is an inbuilt method in JavaScript which is used to return the value of the given string.
Syntax:
string.valueOf()
Parameters: It does not accept any parameter.
Return Values: It returns a string which represent the value of the given string object.
JavaScript code to show the working of string.valueOf() method:
Program 1:
javascript
<script> // Taking a string as input and printing it // with the help of string.valueOf() function var a = new String( "GeeksforGeeks" ); document.write(a.valueOf()); </script> |
Output:
GeeksforGeeks
Program 2:
javascript
<script> // Taking a string as input and printing it // with the help of string.valueOf() function var a = new String( "Geeks" ); var b = new String( "for" ); var c = new String( "Geeks" ); document.write(a.valueOf(),b.valueOf(),c.valueOf()); </script> |
Output:
GeeksforGeeks
Supported Browser:
- Chrome 1 and above
- Edge 12 and above
- Firefox 1 and above
- Internet Explorer 4 and above
- Opera 3 and above
- Safari 1 and above