Javascript-arrays-Q&A Flashcards

1
Q

What are arrays used for?

A

An array is a special type of variable. It doesn’t

just store one value; it stores a 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

The values are assigned to the array inside a pair of square brackets, and each value is 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

Objects represent “things” with characteristics (aka properties), while arrays create and store lists of data in a single variable.

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

Length is a property of arrays in JavaScript that returns or sets the number of elements in a given 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

Subtracting 1 from the length of an array gives the index of the last element of an array using which the last element can be accessed.

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