About JS Weird - 關於JS奇怪的地方如何克服
About JavaScript Weird
- JavaScript如何處理Asynchronous
- 由於JS是Synchronous逐條執行,所以在Browser會有JS Engine,Rendering Engine,Http Request.
- Event queue:監聽所有事件,也是非同步的處裡地方,在JS完成後被調用
- When Stack inside excution contexts finished in JS Engine then call event queue then event loop
- 當JS Engine Stack內的執行環境都完成之後,就會循環的調用Event queue。
-
動態類型、強制轉型
- undefined
- NaN
- null
- “”
- 缺點:這三個在判斷時,務必用===,如果要判斷Number則用Object.is
- 解決:運用強制轉型特性,Boolean(undefined||NaN||null||’’)===false。
-
Self Code and IIFE
- IIFE(Immediately InVoked Function Excution)
- 將匿名function用()包住,達到立即執行效果,優點是節省代碼,並且不會汙染到其他環境,很多大型網站、框架使用,因為獨立環境、匿名函數所以非常安全
-
Closures Bese
- 一個返回函數的函數
-
特點 1.讓函數可以儲存變數,並且讓返回的函數可以調用。 2.閉包每次調用都會創一個新的執行環境,進而達到復用目的
-
CallBack Function
- A function you give to another function, To be run when the other function is finished.
Published 15 Sep 2017