iT邦幫忙

2022 iThome 鐵人賽

DAY 11
0
自我挑戰組

JavaScript - 30天 - 自學挑戰系列 第 11

關於JavaScript中的「Async Callback」示意圖

  • 分享至 

  • xImage
  •  

Async Callback:
雖然程式碼是逐行執行,但是結果並沒有依序印出來,這個過程是因為非同步執行。
我們運用「setTimeout」呼叫堆疊的方式,來模擬非同步的請求,先執行Context,在處理「event queue」。

console.log('h1')

setTimeout(function() {
  console.log('there')
}, 5000)

console.log('JSConfEU')

Replit.com:https://replit.com/@AllenLi23/setTimeout#index.js

https://ithelp.ithome.com.tw/upload/images/20220913/20152092ylsIDQA4aP.png


上一篇
關於JavaScript中的「CallStack」示意圖
下一篇
關於JavaScript中的「Event loop」示意圖
系列文
JavaScript - 30天 - 自學挑戰30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言