What will be printed in the following code?
const map = new Map([[1, 'one']]);
map.set(1, map);
console.log(map.get(1) === map);
What will be printed in the following code?
const map = new Map([[1, 'one']]);
map.set(1, map);
console.log(map.get(1) === map);