Why does ES6 map have different memory addresses for the same key? Just set it with set, but you can't get it with get.

clipboard.png

Jul.08,2021

this is not the same key,

['a'] === ['a']  //false
const map = new Map()
const key = ['a']
map.set(key, 555);
map.get(key) //555
Menu