JavaScript Boolean valueOf() Method
❮ JavaScript Boolean Reference
Example
Return the primitive value of a Boolean object:
var bool = false;
var x = bool.valueOf();
Try it Yourself »
Definition and Usage
The valueOf()
method returns the primitive value of a boolean.
Note: This method is usually called automatically by JavaScript behind the scenes, and not explicitly in code.
Browser Support
Method | |||||
---|---|---|---|---|---|
valueOf() | Yes | Yes | Yes | Yes | Yes |
Syntax
boolean.valueOf()
Parameters
None |
Technical Details
Return Value: | A Boolean, either true or false |
---|---|
JavaScript Version: | ECMAScript 1 |
Related Pages
JavaScript Tutorial: JavaScript Booleans
❮ JavaScript Boolean Reference