javascript-arrays Flashcards

1
Q

What are arrays used for?

A

An array is used to store an ordered list of values.

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

Describe array literal notation.

A
  1. declare a variable
  2. use square brackets
  3. add the values separated by a comma
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
  1. numerically indexed

2. has length property

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 the length property of an array?

A

It provides the number of values 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

Subtract 1 from the length of the array.

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