2021-09-19 验证:实例对象的constructor属性指向其构造函数

// 构造函数Person
function Person(name, age) {
    this.age = age;
    this.name = name;
    this.say = function() {
        console.log("我叫", this.name);
    }
}
// 验证:实例对象p的constructor属性指向构造函数Person
var p = new Person("张三", 18);
console.log(p.constructor === Person); //true,验证结果正确
上一篇:JS对象进阶-理解prototype、proto、constructor


下一篇:ES6中的class关键字