What are arrays used for?
Working with a list or a set of values that are related to each other. It doesn’t
just store one value; it stores a list of values.
Describe array literal notation.
colors= [‘white’,
‘black’,
‘custom’];
vs
array constructor
How are arrays different from “plain” objects?
“special” object, the key/property is the index number
What number represents the first index of an array?
0
What is the length property of an array?
property that holds the number of items in the array.
How do you calculate the last index of an array?
array.length - 1