JS中原型的一些判断方法

287 阅读1分钟

判断某个属性是否在自己上面,而不是在原型上(hasOwnProperty)

var obj = {
    name : 'why',
    age : 18
}

var info = Object.create(obj,{ //第二个属性传的是属性描述符
    address:{
        value:'北京市',
        enumerable:true
    }
})

console.log(info); //{ address: '北京市' } 
console.log(info.__proto__);{ name: 'why', age: 18 }

//判断某个属性是否在自己上面,而不是原型上
console.log(info.hasOwnProperty('address'));  //true
console.log(info.hasOwnProperty('age'));  //false

不管是不是在原型上,只要存在就是true(in操作符)

var obj = {
    name : 'why',
    age : 18
}

var info = Object.create(obj,{ //第二个属性传的是属性描述符
    address:{
        value:'北京市',
        enumerable:true
    }
})
console.log("address" in info); //true
console.log("name" in info); //true

检测构造函数的prototype是否出现在某一对象的原型上(instanceof)

//instanceof(其实用的也不是特别多)
//用于检测构造函数的prototype,是否出现在某一对象的原型上

//继承的函数
function inheritPrototype(SubType,SuperType){
    SubType.prototype = Object.create(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() 
//这个是比较符合事实逻辑的
console.log(stu instanceof Student);  //true,原型对象(prototype)是在原型链里的
console.log(stu instanceof Person); //true student也是人 
console.log(stu instanceof Object); //true  student也是Object衍生的