constructor  Array  instance propertyS2C Home  « Globals « Array « constructor

Description

Returns a reference to the function that created the prototype.

Syntax

Signature Description
anArray.constructorReturns a reference to the function that created the prototype.

Parameters

None.

Examples

The code below displays prototype function of Array.



var anEmptyArray = [];
alert('Array constructor is ' + anEmptyArray.constructor);


Press the button below to action the above code:



Related Tutorials


JavaScript Intermediate Tutorials - Lesson 1 - Arrays




go to home page Homepage go to top of page Top