prototype RangeError class propertyS2C Home
« Globals « RangeError « prototype
Description
Enables property assignment to objects of type RangeError.
- Like all class properties
prototypeshould be used on the class rather than an instance of the class.
Syntax
| Signature | Description |
|---|---|
RangeError.prototype | Enables property assignment to objects of type RangeError. |
Parameters
None.
Examples
The code below displays the RangeError prototype, which is inherited from the Error object.
alert('RangeError prototype is ' + RangeError.prototype);
Related Tutorials
JavaScript Advanced Tutorials - Lesson 2 - Errors