🔸element

a value item contained in an array.

JSobjectbuilt-inArray ⟩ element

the value(s) stored in the Array.

array elements are usually accessed by property access expression, using dot notation (.) / bracket notation [].

deleting an array element leaves a “hole” in the array and does not change the array’s length (sparse array)

Last updated