美文网首页
判断属性继承

判断属性继承

作者: aibinMr | 来源:发表于2019-07-25 23:50 被阅读0次

    function Person(name, age) {

        this.name = 'Tom';

        this.age = 11;

    };

    Person.prototype = {

        job:'资深前端开发工程师',

    };

    var p = new Person();

    console.log(p.name);

    console.log(p.age);

    console.log(p.job);

    console.log('name是对象p自身的属性吗?',Object.prototype.hasOwnProperty.call(p, 'name'));//true

    console.log('age是对象p自身的属性吗?',Object.prototype.hasOwnProperty.call(p, 'age'));//true

    console.log('job是对象p自身的属性吗?',Object.prototype.hasOwnProperty.call(p, 'job'));//false

    相关文章

      网友评论

          本文标题:判断属性继承

          本文链接:https://www.haomeiwen.com/subject/karlrctx.html