What will be the output of the following code?
console.log(myMap.has('age'));
const myMap = new Map();
myMap.set('name', 'John');
myMap.set('age', 30);
What will be the output of the following code?
console.log(myMap.has('age'));
const myMap = new Map();
myMap.set('name', 'John');
myMap.set('age', 30);