JS面向对象——Object对象的方法补充、原型继承关系图

一、Object.create()

这个方法用于创建一个新对象。被创建的对象的__proto__指向create函数第一个参数的原型对象prototype,在创建新对象时可以通过create函数第二个参数指定一些属性。
在这里插入图片描述

二、Object.hasOwnProperty()

  • 对象是否有某一个属于自己的属性(不是在原型上的属性)
    在这里插入图片描述

三、in/for in 操作符

判断某个属性是否在某个对象或者对象的原型上
在这里插入图片描述

四、instanceof

用于检测构造函数的pototype,是否出现在某个实例对象的原型链
在这里插入图片描述

function createObject(o) {
    function Fn() {}
    Fn.prototype = o
    return new Fn()
}

function inheritPrototype(SubType, SuperType) {
    // SubType.prototype = Object.create(SuperType.prototype)
    SubType.prototype = createObject(SuperType.prototype)
    Object.defineProperty(SubType.prototype, 'constructor', {
        enumerable: false,
        configurable: true,
        writable: true,
        value: SubType
    })
}

function Person() {
}
function Student() {
}
inheritPrototype(Student, Person)
var stu = new Student()
// instanceof: stu的原型链上是否能找到Student
console.log(stu instanceof Student) // true
console.log(stu instanceof Person) // true
console.log(stu instanceof Object) // true

五、isPrototypeOf

用于检测某个对象,是否出现在某个实例对象的原型链上
在这里插入图片描述

六、原型继承关系图

在这里插入图片描述

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值