Pages

Javascript Boolean toString() Method

Description:

This method returns a string of either "true" or "false" depending upon the value of the object.

Syntax:

boolean.toString()

Here is the detail of parameters:
  • NA

Return Value:

Returns a string representing the specified Boolean object.

Example:

<html>
<head>
<title>JavaScript toString() Method</title>
</head>
<body>
<script type="text/javascript">
var flag = new Boolean(false); 
document.write( "flag.toString is : " + flag.toString() ); 
</script>
</body>
</html>

This will produce following result:

flag.toString is : false 
 
+JavaScript Frameworks Links  +Javascript Development +JavaScriptOn +Javascript Problems +JavaScript's and More, Software and Marketing 

No comments:

Flag Counter
| Copyright © 2013 Remote Tutor