What are arrays used for?
When you are working with a list or a set of values that are related to each other, especially when you do not know how many items a list will contain
Describe array literal notation.
Variable keyword, array name, assignment operator, opening square brackets, values separated by commas, closing square brackets
How are arrays different from “plain” objects?
They key for each value is its index number rather than name
What number represents the first index of an array?
0
What is the length property of an array?
Tells you how many items are in the array
How do you calculate the last index of an array?
array.length - 1