Map Flashcards

1
Q

Initialise a map

A

const map = new Map()

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

Add or update a key-value pair in a map

A

map.set(key, value)

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

Retrieve a value from the map using a key

A

const value = map.get(key)

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

Determine if a map contains a specific key

A

const hasKey = map.has(key)

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

Remove a key-value pair from the map

A

map.delete(key)

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

Loop through key-value pairs in a map

A

for (const [key, value] of map) {
console.log(key, value)
}

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

Convert map to array

A

const entries = Array.from(map.entries())

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

Filter map values based on a condition

A

Array.from(map.values()).filter(value => condition)

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

Remove all key-value pairs from map

A

map.clear()

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

Get key value pairs for map

A

myMap.entries

Get array:
Array.from(myMap.entries())

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

Create array of key values from map and map those values

A

Array.from(myMap.entries()).map(([id, borrower]) => ({
book: this.checkBookExists(id),
borrower,
}));

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