isPrototypeOf是用于检测一个对象是否存在于另一个对象的原型链上
示例:
function Bar() {
}
let obj = new Bar();
let obj2 = {}
console.log(Bar.prototype.isPrototypeOf(obj)) // true
console.log(Bar.prototype.isPrototypeOf(obj2)) // false
isPrototypeOf是用于检测一个对象是否存在于另一个对象的原型链上
示例:
function Bar() {
}
let obj = new Bar();
let obj2 = {}
console.log(Bar.prototype.isPrototypeOf(obj)) // true
console.log(Bar.prototype.isPrototypeOf(obj2)) // false