Pages

Javascript Boolean valueOf() Method

4/4/14

Description:

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

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 

No comments:

Post a Comment

Related Posts