All about this
2022-05-25 本文已影响0人
小丸子啦啦啦呀
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