What are arrays used for?
Storing lists of data
Describe array literal notation.
Square notations assigned to a variable as a value.
How are arrays different from “plain” objects?
Arrays are numerically indexed, objects do not have a numerical index you can iterate over
What number represents the first index of an array?
0
What is the length property of an array?
Numeric value for the length of a given array
How do you calculate the last index of an array?
Array.length – 1