Copyright © tutorialspoint.com
This method returns a string representing the specified object.
string.toString( ) |
Here is the detail of parameters:
NA
Returns a string representing the specified object.
<html> <head> <title>JavaScript String toString() Method</title> </head> <body> <script type="text/javascript"> var str = "Apples are round, and Apples are Juicy."; document.write(str.toString( )); </script> </body> </html> |
This will produce following result:
Apples are round, and Apples are Juicy. |
To understand it in better way you can Try it yourself.
Copyright © tutorialspoint.com