What are arrays used for?
a list or a set of values that are related to each other.
Describe array literal notation.
The values are assigned to the array inside a pair of square brackets, and each value is separated by a comma
How are arrays different from “plain” objects?
The key for each value is its index number.
What number represents the first index of an array?
0.
What is the length property of an array?
It holds the number of items in the array.
How do you calculate the last index of an array?
length property minus 1.