🔸element
a value item contained in an array.
JS ⟩ object ⟩ built-in ⟩ Array ⟩ element
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