What will be printed to the console in the following code?
const map = new Map([[1, 'one'], [2, 'two'], [3, 'three']]);
console.log(map.has(3));
What will be printed to the console in the following code?
const map = new Map([[1, 'one'], [2, 'two'], [3, 'three']]);
console.log(map.has(3));