day031: 能不能模擬實現一個new的效果?

new被調用後作了三件事情:app 讓實例能夠訪問到私有屬性 讓實例能夠訪問構造函數原型(constructor.prototype)所在原型鏈上的屬性 若是構造函數返回的結果不是引用數據類型 function newOperator(ctor, ...args) { if(typeof ctor !== 'function'){ throw 'newOperator function the
相關文章
相關標籤/搜索