What does the following code return?
const map = new Map([[1, 'one'], [2, 'two']]);
const copy = new Map(map);
console.log(copy.get(2));
What does the following code return?
const map = new Map([[1, 'one'], [2, 'two']]);
const copy = new Map(map);
console.log(copy.get(2));