let obj = { a: 10 };
var obj = {
a: 20,
say: () => console.log(this.a)
}
obj.say(); // undefined
var anotherObj = { a: 30 }
obj.say.apply(anotherObj); // undefined
let obj = { a: 10 };
var obj = {
a: 20,
say: () => console.log(this.a)
}
obj.say(); // undefined
var anotherObj = { a: 30 }
obj.say.apply(anotherObj); // undefined
本文标题:All about this
本文链接:https://www.haomeiwen.com/subject/twneprtx.html
网友评论