What are arrays used for?
Lists, data where order is important.
Describe array literal notation.
Name of array = [ , , ];
How are arrays different from “plain” objects?
You don’t know how many items there will be, numerically indexed.
What number represents the first index of an array?
0
What is the length property of an array?
Number of values in an array
How do you calculate the last index of an array?
array.length - 1