What will be the output of the following code?
var myObject = { a: 1, b: 2, c: 3 };
for (let key in myObject) {
console.log(key);
}
What will be the output of the following code?
var myObject = { a: 1, b: 2, c: 3 };
for (let key in myObject) {
console.log(key);
}