Arrays
const arr = []const satchel = [
'chair',
'table',
'candle',
'map',
'magnifying glass',
'rupees',
'Quick Eze',
'boomerang'
]
const squares = [1, 4, 9, 16, 25, 36, 49, 64, 81, 100]Accessing Elements
Getting the Number of Elements in an Array
Changing Elements
Iterate over an array
Last updated