What will be the output of the following code?
const obj = {
name: 'John',
greet: function() {
setTimeout(function() {
console.log(`Hello, ${this.name}!`);
}, 1000);
}
};
obj.greet();
What will be the output of the following code?
const obj = {
name: 'John',
greet: function() {
setTimeout(function() {
console.log(`Hello, ${this.name}!`);
}, 1000);
}
};
obj.greet();