JavaScript string.valueOf() Method
Below is the example of the string.valueOf() Method.
- Example:
<script>
var
a =
new
String(
"GeeksforGeeks"
);
document.write(a.valueOf());
</script>
chevron_rightfilter_none - 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:
<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> |
chevron_right
filter_none
Output:
GeeksforGeeks
Program 2:
<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> |
chevron_right
filter_none
Output:
GeeksforGeeks