JS understanding the weird parts 4-43 ~ 4-45 IIFEs
4-43 White space
4-44 Immediately invoked function expressions(IIFEs)
function 被宣告後馬上被執行,回傳hello字串給greeting
1 |
|
syntax parse saw function keyword in the starting in a line, it expects that this is a function statement
1 |
|
4-45 IIFEs and safe code
因為是呼叫function,有自己的 execution context
所有function 不會動到 global
如果真的需要global的內容,下面給了一個範例
能夠安全的access global content
1 |
|