Copyright © tutorialspoint.com
Javascript boolean valueOf() method returns the primitive value of the specified boolean object..
boolean.valueOf() |
Here is the detail of parameters:
NA
Returns the primitive value of the specified boolean object.
<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 |
To understand it in better way you can Try it yourself.
Copyright © tutorialspoint.com