手写new/call/apply/bind/防抖/节流/深拷贝/promise/promise.all
new创建一个空的简单JavaScript对象(即{});链接该对象(即设置该对象的构造函数)到另一个对象;将创建的对象作为this的上下文;如果该函数没有返回对象,则返回this。functionmyNew(fn,...args){constobj={};obj.__proto__=fn.prototype;constres=fn.call(obj,...args);returntypeofre