What is printed in the following code snippet?
const map = new Map([[1, 'one'], [2, 'two']]);
map.set(1, 'ONE');
console.log(map.get(1));
What is printed in the following code snippet?
const map = new Map([[1, 'one'], [2, 'two']]);
map.set(1, 'ONE');
console.log(map.get(1));