javascript-arrays Flashcards

1
Q

What are arrays used for?

A

They are ordered lists made for dealing with data in an orderly fashion

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

Describe array literal notation.

A

square brackets with values separated by commas

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

arrays have length properties
arrays have a set order
array indexes are called with numbers in [ ]

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 returns the number value of the amount of items in an array. it is a true value

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

you calculate the last index of an array by returning the result of
arr.length - 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

you calculate the last index of an array by taking the length of an array and subtracting 1

arr.length - 1

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