javascript - es6數(shù)值解構(gòu)Number.prototype.toString is not generic
問題描述
<!DOCTYPE html><html lang='en'><head> <meta charset='UTF-8'> <title>Document</title></head><body> <script>({toString:b} = 123);console.log(b === Number.prototype.toString); // trueconsole.log(Number.prototype.toString()); // 0console.log(b()); // Number.prototype.toString is not genericlet num = 456;console.log(num.b()); // num.b is not a function </script></body></html>
為什么b不能作為函數(shù)調(diào)用?
問題解答
回答1:Number.prototype.toString 標(biāo)準(zhǔn)
The toString function is not generic; it throws a TypeError exception if its this value is not a Number or a Number object. Therefore, it cannot be transferred to other kinds of objects for use as a method.
翻譯一下后面的:
如果他的this值不是數(shù)字類型或者Number對(duì)象,將會(huì)拋出一TypeError
直接調(diào)用this是window你可以這么用:
b.call(1)b.call(Number(’test’))回答2:
你可以b.call(num),一般來說toString不允許作為普通函數(shù)執(zhí)行很容易接受,就跟構(gòu)造函數(shù)一般不作為普通函數(shù)執(zhí)行一樣。ps:例子中的Number.prototype.toString()實(shí)際上作用域也是Number.prototype
補(bǔ)充一下,答題有點(diǎn)離題了,b()實(shí)際上是作為函數(shù)調(diào)用的,也調(diào)用成功了,錯(cuò)誤是toString()自身拋出來的。
回答3:Number.prototype.toString 可以作為函數(shù)調(diào)用但 this 一定要是 Number 類型。其他類型的 toString 同理。
b.call(123)// '123'
The toString function is not generic; it throws a TypeError exception if its this value is not a Number or a Number object. Therefore, it cannot be transferred to other kinds of objects for use as a method.
15.7.4.2 Number.prototype.toString
相關(guān)文章:
1. angular.js - $stateChangeSuccess事件在狀態(tài)跳轉(zhuǎn)的時(shí)候不執(zhí)行?2. 如何解決docker宿主機(jī)無法訪問容器中的服務(wù)?3. python - Scrapy存在內(nèi)存泄漏的問題。4. angular.js - ionic2 瀏覽器跨域問題5. 如何用筆記本上的apache做微信開發(fā)的服務(wù)器6. javascript - 螞蟻金服里的react Modal方法,是怎么把元素插入到頁面最后的7. CSS3 畫如下圖形8. android - rxjava merge 返回Object對(duì)象數(shù)據(jù)如何緩存9. java如何生成token?10. docker 下面創(chuàng)建的IMAGE 他們的 ID 一樣?這個(gè)是怎么回事????
