What are arrays used for?
lists of data
Describe array literal notation.
squared off brackets= []
How are arrays different from “plain” objects?
ordered list and objects don’t have ordered list
object is illteratble (NOT indexed)
What number represents the first index of an array?
0
What is the length property of an array?
Tells the total value of items inside an array
How do you calculate the last index of an array?
array.length-1