Javascript Arays Flashcards

1
Q

What are arrays used for?

A

To store an ordered collection of data

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

Describe array literal notation.

A

const arrayName = [value0, value1, etc];

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

How arrays different from “plain objects” ?

A

Arrays are numerically ordered where plain objects are not

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

What array 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

The highest numerical index in an array plus 1

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

arrayName.length -1 or arrayName.at(-1);

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