What are arrays used for?
Used to store information in a numbered index list.
Describe array literal notation.
Variables assigned with [ ].
How are arrays different from “plain” objects?
Arrays have an index number order and objects don’t.
What number represents the first index of an array?
0.
What is the length property of an array?
It returns the amount of indexed values.
How do you calculate the last index of an array?
Using array.length - 1.