Skip to content

Latest commit

 

History

History
12 lines (6 loc) · 550 Bytes

File metadata and controls

12 lines (6 loc) · 550 Bytes

Arrays Back

The array is the most common data structure in computer programming.

JavaScript Arrays Defined

The standard definition for an array is a linear collection of elements, where the elements can be accessed via indices, which are usually integers used to compute offsets.

A JavaScript array is actually a specialized type of JavaScript object, with the indices being property names that can be integers used to represent offsets.

More details can be read at a preceding post.