ES5和ES6那些你必须知道的事儿(二)

ES5和ES6那些你必须知道事儿

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)

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wpxpjz.html