JavaScript: Array Object

By Xah Lee. Date: . Last updated: .

Array is the value of the property key "Array" of the Global Object .

console.log( window.Array === Array );

Type

Type of Array is a function.

console.log( typeof Array === "function" );

Parent

Parent of Array is Function.prototype.

console.log( Reflect.getPrototypeOf ( Array ) === Function.prototype );

Purpose

Purpose of Array is:

Array Constructor

Array Constructor

Properties

JavaScript Array

BUY
ΣJS
JavaScript in Depth