What are arrays used for?
used for storing lists of data, numerically indexed
Describe array literal notation.
square brackets [ ]
How are arrays different from “plain” objects?
numerically indexed from 0 while objects aren’t numerically indexed
What number represents the first index of an array?
0
What is the length property of an array?
it measures how long the array is; how many indexes are in an array
How do you calculate the last index of an array?
array[array.length - 1]