new被调用后做了三件事情:

    1. 让实例可以访问到私有属性
    2. 让实例可以访问构造函数原型(constructor.prototype)所在原型链上的属性
    3. 如果构造函数返回的结果不是引用数据类型,那么new表达式中的函数调用会自动返回这个新的对象。
    1. function newFactory(ctor,...args) {
    2. if (typeof ctor !== 'function') {
    3. throw 'newOperator function the first param must be a function'
    4. }
    5. let obj = new Object()
    6. obj.__proto__ = Object.create(ctor.prototype)
    7. let res = ctor.apply(obj, args)
    8. let isObject = typeof res === 'object' && typeof res !== null
    9. let isFunction = typeof res === 'function'
    10. return isObject || isFunction ? res : obj
    11. }