prototype Array class propertyS2C Home
« Globals « Array « prototype
Description
Enables property assignment to objects of type Array.
- Like all class properties
prototypeshould be used on the class rather than an instance of the class.
Syntax
| Signature | Description |
|---|---|
Array.prototype | Enables property assignment to objects of type Array. |
Parameters
None.
Examples
The code below displays Array prototype.
alert('Array prototype is ' + Array.prototype);
Related Tutorials
JavaScript Intermediate Tutorials - Lesson 1 - Arrays