prototype  Boolean  class propertyS2C Home  « Globals « Boolean « prototype

Description

Enables property assignment to objects of type Boolean.

  • Like all class properties prototype should be used on the class rather than an instance of the class.

Syntax

Signature Description
Boolean.prototypeEnables property assignment to objects of type Boolean.

Parameters

None.

Examples

The code below displays Boolean prototype.



alert('Boolean prototype is ' + Boolean.prototype);

Press the button below to action the above code:


Related Tutorials

JavaScript Basic Tutorials - Lesson 9 - Booleans


go to home page Homepage go to top of page Top