Javascript-Arrays Flashcards
1
Q
What are arrays used for?
A
Arrays are used to store a list of data
2
Q
Describe array literal notation.
A
array literal notation assigns a list of data nested in square brackets and then assigned to a declared variable
3
Q
How are arrays different from “plain” objects?
A
property keys for arrays are called indexes which represent the position of the data within the list
4
Q
What number represents the first index of an array?
A
0
5
Q
What is the length property of an array?
A
the length property of an array returns the number of values within the array.
6
Q
How do you calculate the last index of an array?
A
You take the .length of the array and subtract 1 from it and assign this expression to a declared variable