const _new = function(Ctor, ...argsArray) { // 确认构造器是函数 if(typeof Ctor !== 'function') return; // 通过Object.create为新对象设置原型,然后执行构造器函数 &nbs...