What will be the output of the following code?
console.log(myMap.get('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.get('age'));
const myMap = new Map();
myMap.set('name', 'John');
myMap.set('age', 30);