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