Map Flashcards
Initialise a map
const map = new Map()
Add or update a key-value pair in a map
map.set(key, value)
Retrieve a value from the map using a key
const value = map.get(key)
Determine if a map contains a specific key
const hasKey = map.has(key)
Remove a key-value pair from the map
map.delete(key)
Loop through key-value pairs in a map
for (const [key, value] of map) {
console.log(key, value)
}
Convert map to array
const entries = Array.from(map.entries())
Filter map values based on a condition
Array.from(map.values()).filter(value => condition)
Remove all key-value pairs from map
map.clear()
Get key value pairs for map
myMap.entries
Get array:
Array.from(myMap.entries())
Create array of key values from map and map those values
Array.from(myMap.entries()).map(([id, borrower]) => ({
book: this.checkBookExists(id),
borrower,
}));