Arrays Flashcards

1
Q

What are arrays used for?

A

storing a list of values that are related to each other.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Describe array literal notation.

A

key = [ ‘value’, value, ]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How are arrays different from “plain” objects?

A

in an array the key for each value is its index number

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What number represents the first index of an array?

A

0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is thelengthproperty of an array?

A

tells you how many items are in the array

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How do you calculate the last index of an array?

A

.length then subtract one

How well did you know this?
1
Not at all
2
3
4
5
Perfectly