What are arrays used for?
An array is used to store an ordered list of values.
Describe array literal notation.
How are arrays different from “plain” objects?
2. has length property
What number represents the first index of an array?
0
What is the length property of an array?
It provides the number of values in the array.
How do you calculate the last index of an array?
Subtract 1 from the length of the array.