Pages

Javascript Boolean valueOf() Method

Description:

Javascript boolean valueOf() method returns the primitive value of the specified boolean object..

Syntax:

boolean.valueOf()

Here is the detail of parameters:
  • NA

Return Value:

Returns the primitive value of the specified boolean object.

Example:

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

This will produce following result:

flag.valueOf is : false 
 
+JavaScript Frameworks Links +Javascript Development  +JavascriptU 
  +Javascript Problems   +javaScript is a creek in West Virginia in the summer  
 

No comments:

Flag Counter
| Copyright © 2013 Remote Tutor