We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
第729天 js哪些方法可以获取原型?
3+1官网
我也要出题
Object.getPrototypeOf()方法
ES5
obj.__proto__
ES6
Object.getPrototypeOf(obj)
Activity
MintelJP commentedon Apr 14, 2021
Object.getPrototypeOf()方法
touryung commentedon Apr 14, 2021
ES5
:obj.__proto__
ES6
:Object.getPrototypeOf(obj)