Junior — Senior
What will be output to the console (example 35)
livecode
Task condition
Determine what output will appear in the console when executing the following JavaScript code:
const myObj = {
name: 'Maxim',
greet() {
console.log(this.name)
}
};
myObj.greet();
const fn = myObj.greet