摘要: 知识点: Object.create的内部原理: Object.create = function (o) { var F = function () {}; F.prototype = o; return new F(); }; 本质就是创建一个新对象 然后把新对象的__proto__原型对象指向 阅读全文
posted @ 2019-03-07 18:41 hh9515 阅读(132) 评论(0) 推荐(0) 编辑