es6中的箭頭函數是否可使用new實例化?與普通函數有什麼區別?new的實質是什麼?如何手動寫一個new?

箭頭函數、沒有prototype、沒有本身的this指向、不能夠使用arguments、天然不能夠new。 let fun = (a, s) => {}; console.dir(fun); // --- > 從?圖能夠看到 箭頭函數fun是沒有prototype的。 let func = function(a, s) {}; console.dir(func); 箭頭函數沒法使用a
相關文章
相關標籤/搜索