Appearance
实现 Object.create
function main(obj) { function fn() {} fn.prototype = obj; return new fn(); }