提问人:Yauheni Padvoiski 提问时间:10/15/2021 最后编辑:Yauheni Padvoiski 更新时间:10/15/2021 访问量:34
使用构造函数创建带有 NEW 关键字的对象和使用箭头函数方法的普通对象有什么区别?[复制]
What is the difference between creating object with NEW keyword using constructor and plain object regarding arrow functions methods? [duplicate]
问:
我有一个函数构造函数 A
function A(){
this.number = 10;
this.show = () => console.log(this.number)
}
因此,我正在使用此构造函数创建一个对象
let a = new A();
//a={
// number: 10,
// show: () => console.log(this.number)
//}
和普通对象 b
let b = {
number: 20,
show: () => console.log(this.number)
}
因此,我可以说对象 a 和 b 在语法上等于 a == b,但为什么
a.show() // gives 10
b.show() // undefined
我知道对于 b,“this”是一个全局对象,这就是为什么在这种情况下它是未定义的,但为什么 a 有不同的行为?
答: 暂无答案
评论
this