All Articles

About JS Weird - 關於JS奇怪的地方如何克服

About JavaScript Weird

  • JavaScript如何處理Asynchronous
    1. 由於JS是Synchronous逐條執行,所以在Browser會有JS Engine,Rendering Engine,Http Request.
    2. Event queue:監聽所有事件,也是非同步的處裡地方,在JS完成後被調用
    3. When Stack inside excution contexts finished in JS Engine then call event queue then event loop
    4. 當JS Engine Stack內的執行環境都完成之後,就會循環的調用Event queue。
  • 動態類型、強制轉型

    1. undefined
    2. NaN
    3. null
    4. “”
  • Self Code and IIFE

    1. IIFE(Immediately InVoked Function Excution)
    2. 將匿名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