• JavaScript Video Tutorials

JavaScript String - toString() Method



Description

This method returns a string representing the specified object.

Syntax

Its syntax is as follows −

string.toString( )

Return Value

Returns a string representing the specified object.

Example

Try the following example.

<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>

Output

Apples are round, and Apples are Juicy.
javascript_strings_object.htm
Advertisements