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