JavaScript Basics
JavaScript Objects
JavaScript Advanced
JS Useful References
JS Useful Resources
Selected Reading
© 2011 TutorialsPoint.COM
|
Javascript Boolean valueOf() Method
Description:
Javascript boolean valueOf() method returns the primitive value of the specified boolean object..
Syntax:
Here is the detail of parameters:
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:
To understand it in better way you can Try it yourself.
|
|
|