当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript Object.getPrototypeOf()用法及代码示例


JavaScript 的 Object.getPrototypeOf() 方法返回指定对象的原型(即内部 [[Prototype]] 属性的值)。

用法:

Object.getPrototypeOf(obj)

参数

obj: 它是一个要返回其原型的对象。

返回值:

此方法返回给定对象的原型。如果没有继承的属性,此方法将返回 null。

浏览器支持:

Chrome 5
Edge Yes
Firefox 3.5
Opera 12.1

例子1

let animal = {
  eats:true
};
   // create a new object with animal as a prototype
let rabbit = Object.create(animal);
alert(Object.getPrototypeOf(rabbit) === animal); // get the prototype of rabbit

Object.setPrototypeOf(rabbit, {}); // change the prototype of rabbit to {}

输出:

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

例子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






相关用法


注:本文由纯净天空筛选整理自 JavaScript Object.getPrototypeOf() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。