Arrays/lists Flashcards

1
Q

Add to end of array

A

arr.push(element)

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

Remove from start of array

A

arr.shift()

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

Remove from end

A

arr.pop()

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

Remove from middle of array

A

arr.splice(startIndex, deleteCount)

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

Find length of array

A

arr.length

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

Check if array includes a value

A

arr.includes(value)

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

Map array elements

A

arr.map(element => element * 2)

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

Filter array elements

A

arr.filter(element => element > 10)

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

Use reduce to sum elements in array

A

arr.reduce((accumulator, currentValue) => accumulator + currentValue, 0)

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

Find first element in array using find

A

arr.find(element => element > 10)

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

Find if an element in array satisfies condition

A

arr.some(element => element > 10)

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

Find if an element in array satisfies condition

A

arr.some(element => element > 10)

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

Find if every element in an array satisfies a condition

A

arr.every(element => element > 10)

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

Merge two arrays

A

arr1.concat(arr2)

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

See if array includes a value

A

arr.includes(element)

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

Join array into string

A

arr.join(separator)

17
Q

Sort array of strings

A

arr.sort()

18
Q

Sort array of numbers

A

numbers.sort((a,b) => a-b)

19
Q

Loop through values using for each

A

words.forEach(word => {
console.log(word)
}