Appearance
可以指定原型对象和属性,返回一个新的对象
function create(proto) { function F() {} F.prototype = proto return new F() }