构造函数中的 "this" 关键字是否引用类实例的名称?



构造函数中的this关键字是否引用正在创建的类的实例名?在这个例子中它指的是person1吗?

function Person(name,age){
this.name = name;
this.age = age;
}
const person1 = new Person('ana', '13');

let thisStored = null;
function Person(name,age){
this.name = name;
this.age = age;
thisStored = this;
}
const person1 = new Person('ana', '13');
console.log(person1 === thisStored); // output: true

相关内容

  • 没有找到相关文章