๐Ÿ“˜Array

๐Ÿšง under construction

JS โŸฉ value โŸฉ objectโŸฉ built-in โŸฉ Array

(Object)

  • an ordered collection of values.

  • each value is called an element.

  • each element has a numeric position in the array, known as its index.

JavaScript arrays are untyped:

  • an array element may be of any type.

  • different elements of the same array may be of different types.

Last updated