Object.getPrototypeOf()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
Object.getPrototypeOf()
静态方法返回指定对象的原型(即内部 [[Prototype]]
属性的值)。
尝试一下
语法
js
Object.getPrototypeOf(obj)
参数
obj
-
要返回其原型的对象。
返回值
给定对象的原型,可能是 null
。
示例
使用 getPrototypeOf
js
const proto = {};
const obj = Object.create(proto);
Object.getPrototypeOf(obj) === proto; // true
非对象强制类型转换
规范
Specification |
---|
ECMAScript Language Specification # sec-object.getprototypeof |
浏览器兼容性
BCD tables only load in the browser