Pages

Javascript String - toString() Method

4/6/14

Description:

This method returns a string representing the specified object.

Syntax:

string.toString( )
Here is the detail of parameters:
  • NA

Return Value:

  • Returns a string representing the specified object.

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>
This will produce following result:
Apples are round, and Apples are Juicy.

No comments:

Post a Comment

Related Posts