Containers Flashcards

1
Q

Create array from iterable (e.g. Set, Map)

A

Array.from(new Set([“foo”, “bar”, “baz”, “foo”]));

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

Check if arr is an array

A

Array.isArray(arr)

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

Truncate array to only 3 elements

A

a.length = 3

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

Add/Remove single element from front/back of an array arr (all methods)

A
arr.push(5);
arr.pop();
arr.unshift("one");
arr.shift();
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Add multiple elements to the front / back of an array arr

A
arr.push(1, 2, 3);
arr.unshift(1, 2, 3);
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Add one array to another (all methods)

A
["1", "2", "3"].concat("a", "b", "c");

[...[1, 3, 2], ...[4, 5, 7]]

// Note:
// [1, 2, 3] + [3, 4, 5]
// will add string representations resulting in '1,2,33,4,5
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Join elements of an array with -

A

["1", "2", "3"].join("-");

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

All array search methods

A
arr.indexOf("b", 3);
arr.lastIndexOf("b", 3);
arr.find((e) => e > 10); // returns THAT ELEMENT
arr.findIndex((e) => e > 10); // returns index
arr.findLast((e) => e > 10);
arr.findLastIndex((e) => e > 10);
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Check if 2 is in array arr

A

arr.includes(2);

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

Reverse and sort an array (in place and with copy)

A
arr.reverse();  // in place
cont reversedArr = arr.toReversed();
const sorted = arr.toSorted();
arr.sort(); // in place
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Create array of 10 elements all with value 4

A

const tenFours = new Array(10).fill(4)

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

All iterative array methods, args where necessary

And what they do

A
arr.forEach
arr.map
arr.flatMap
arr.filter
arr.every
arr.some
reduce(
  (accumulator, currentValue) => accumulator + currentValue,
  initialValue,
);
arr.reduceRight
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Get subarray

A

months.slice(1, 3); // Indexes [1, 3)

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

What is splice

A
// Splice (splice = splot)
// >> splice(start, deleteCount, item1, item2, /* …, */ itemN)
// Remove at index [1] 2 elements, replace with 'a' and 'b', returns removed elements
const removed = months.splice(1, 2, "a", "b"); // [1, "a", "b", 4, 5]
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Convert ArrayBuffer to regular array of 32-bit integers

A
let buffer = new ArrayBuffer(16);
let int32View = new Int32Array(buffer);
const normalArray = Array.from(int32View);
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q
  • Assign 1’st element of array to a
  • 2’nd element of an array to b
  • Remaining elements to everythingElse (as an array)

In single line

A

const [a, b, …everythingElse] = [0, 1, 1, 2, 3, 5, 8];

17
Q

Methods on Map
* Add and remove elements
* Read elements
* Check if element in a map
* Remove all elements
* Get length

A
sayings.set("dog", "woof");
sayings.delete("dog");
sayings.get("dog"); 
sayings.has("bird");
sayings.clear();
sayings.size;
18
Q

Methods on Set
* Add and remove elements
* Check if element in a set
* Remove all elements
* Get length

A
mySet.add(1);
mySet.delete(1);
mySet.has(1);
mySet.clear();
mySet.size;
19
Q

Iterate all Map entries

A
for (let [key, value] of sayings) {
  console.log(key + " goes " + value);
}
20
Q

Iterate all Set entries

A

for (let item of mySet) console.log(item);

21
Q

How to use async callback in map

A
const itemsPromises = [1, 2, 3].map(async (i) => i.toString())
await Promise.all(itemsPromises);