ES5新增的东西
二、对象方法
1、Object.getPrototypeOf(object)
返回对象的原型
function Pasta(grain, width) { this.grain = grain; this.width = width; } var spaghetti = new Pasta("wheat", 0.2); var proto = Object.getPrototypeOf(spaghetti); console.log(proto)
ES5新增的东西
二、对象方法
1、Object.getPrototypeOf(object)
返回对象的原型
function Pasta(grain, width) { this.grain = grain; this.width = width; } var spaghetti = new Pasta("wheat", 0.2); var proto = Object.getPrototypeOf(spaghetti); console.log(proto)
内容版权声明:除非注明,否则皆为本站原创文章。