What are arrays used for?
To store data related to eachother
Describe array literal notation
a variable is assigned to a bracket of values, separated by commas.
How are arrays different from ‘plain’ objects?
Arrays are indexed
What number represents the first index of an array?
0
What is the length property of an array?
To show how many values are stored in the array
How do you calculate the last index of an array?
object.length - 1