Description:
This method returns the primitive value of a String object.
Syntax:
string.valueOf( ) |
Here is the detail of parameters:
- NA
Return Value:
- Returns the primitive value of a String object.
Example:
<html> <head> <title>JavaScript String valueOf() Method</title> </head> <body> <script type="text/javascript"> var str = new String("Hello world"); document.write(str.valueOf( )); </script> </body> </html> |
This will produce following result:
Hello world |
No comments:
Post a Comment