Javascript-arrays Flashcards
1
Q
What are arrays used for?
A
store a list items
2
Q
Describe array literal notation
A
variable name & assign [variable];
3
Q
how are arrays different from “plain” objects?
A
array = # orders
4
Q
What number represents the first index of an array?
A
array[0]
5
Q
What is the length property of an array?
A
# of items. array.length
6
Q
How do you calculate the last index of an array?
A
array.length-1