What are arrays used for
collection of items, or data, stored in contiguous memory locations, also known as database systems(ordered)
Describe array literal notation.
a list of zero or more expressions, each of which represents an array element, enclosed in square brackets
How are arrays different from “plain” objects?
numerically indexed and ordered
What number represents the first index of an array?
0
What is the length property of an array?
how many variables are inside the array
How do you calculate the last index of an array?
the length minus 1 will equal the last index of the array