this
by what1s1ove
JavaScript
const guitarPlayer = {
name: 'Richie Sambora',
getHelloFunction() {
return function () {
console.log(this.name);
}
}
}
const hello = guitarPlayer.getHelloFunction();
hello();
by what1s1ove
const guitarPlayer = {
name: 'Richie Sambora',
getHelloFunction() {
return function () {
console.log(this.name);
}
}
}
const hello = guitarPlayer.getHelloFunction();
hello();