JavaScript 的 Object.getPrototypeOf()
方法返回指定对象的原型(即内部 [[Prototype]] 属性的值)。
语法:
Object.getPrototypeOf(obj)
参数
obj:要返回其原型的对象。
返回值:
此方法返回给定对象的原型。如果没有继承属性,此方法将返回 null。
浏览器支持:
chrome | 5 |
edge | 是的 |
firefox | 3.5 |
opera | 12.1 |
示例1
let animal = {
eats: true
};
// 以动物为原型创建一个新对象
let rabbit = Object.create(animal);
alert(Object.getPrototypeOf(rabbit) === animal); // 得到rabbit的原型
Object.setPrototypeOf(rabbit, {}); // 修改rabbit原型改为{}
输出:
true
示例2
const prototype1 = {};
const object1 = Object.create(prototype1);
const prototype2 = {};
const object2 = Object.create(prototype2);
console.log(Object.getPrototypeOf(object1) === prototype1);
console.log(Object.getPrototypeOf(object1) === prototype2);
输出:
true
false
false
示例3
const prototype1 = {};
const object1 = Object.create(prototype1);
const prototype2 = {};
const object2 = Object.create(prototype2);
console.log(Object.getPrototypeOf(object1) === prototype1);
console.log(Object.getPrototypeOf(object2) === prototype2);
输出:
true
true
true