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