JavaScript Boolean is an object that represents value in two states: true or false. You can create the JavaScript Boolean object by Boolean() constructor as given below.
The default value of JavaScript Boolean object is false.
JavaScript Boolean Example
JavaScript Boolean Properties
Property | Description |
---|---|
constructor | returns the reference of Boolean function that created Boolean object. |
prototype | enables you to add properties and methods in Boolean prototype. |
JavaScript Boolean Methods
Method | Description |
---|---|
toSource() | returns the source of Boolean object as a string. |
toString() | converts Boolean into String. |
valueOf() | converts other type into Boolean. |
No comments:
Post a Comment