function f(){ console.log('I am outside!');}(function (){ if (false){ function f(){ console.log('I am inside!'); } } f();}())看的是阮一峰老師的《ES6標(biāo)準(zhǔn)入門(mén)》塊級(jí)作用域部分,書(shū)上說(shuō)會(huì)輸出‘I am outside!’可是實(shí)際上瀏覽器報(bào)錯(cuò) test.html:25 Uncaught TypeError: f is not a function at test.html:25 at test.html:26
學(xué)習(xí)ES6的時(shí)候看到一個(gè)函數(shù),為什么自己運(yùn)行的時(shí)候會(huì)報(bào)錯(cuò)
狐的傳說(shuō)
2019-02-12 11:19:02