prototype Boolean class property
JS Home <<
JS Reference <<
Boolean <<
prototype
Description
Enables property assignment to objects of type Boolean.
- Like all class properties
prototypeshould be used on the class rather than an instance of the class.
Syntax
| Signature | Description |
|---|---|
Boolean.prototype; | Enables property assignment to objects of type Boolean. |
Parameters
None.
Examples
The code below displays Boolean prototype.
alert('Boolean prototype is ' + Boolean.prototype);
Related Tutorials
JavaScript Basic Tutorials - Lesson 9 - Booleans
