create_.create(prototype, props)创建具有给定原型的新对象,可选附加 props 作为 own 的属性。基本上,和 Object.create 一样,但是没有所有的属性描述符。var moe = _.create(Stooge.prototype, {name: "Moe"});Copy