Array_Methods Flashcards

1
Q

array.length

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

array[0]

A

find item in array. this way you can also modify item in array eg: array[0] = “hans”.

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

array.indexOf(“item”)

A

returns index of item

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

array.push(“item”)

A

add item to end of array

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

array.pop()

A

removes item at end of array

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

array.unshift(“item”)

A

add item to beginning of array

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

array(shift)

A

removes item from beginning of array

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

array.splice(1, 3)

A

removes item(s) from array, whereby first argument says at which index to start removing and second argument is number of items to remove.

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

for (const item of items) {
}

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

array.map(function)

A

function double(number) {
return number * 2;
}
const numbers = [5, 2, 7, 6];
const doubled = numbers.map(double);
console.log(doubled); // [ 10, 4, 14, 12 ]

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

array.filter(function)

A

function isLong(city) {
return city.length > 8;
}
const cities = [“London”, “Liverpool”, “Totnes”, “Edinburgh”];
const longer = cities.filter(isLong);
console.log(longer); // [ “Liverpool”, “Edinburgh” ]

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

string.split(“,”)

A

create array from string splitting by “,”.

const data = “Manchester,London,Liverpool,Birmingham,Leeds,Carlisle”;

const cities = data.split(“,”);

console.log(cities)
//[“Manchester”, “London”, “Liverpool”, “Birmingham” , “Leeds”, “Carlisle”]

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

array.join(“,”)

A

converts array to string using , as separator.

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