实现一个Object.create()方法 function create(proto) { function F() {}; F.prototype = proto; return new F(); }