Step
打開 DevTools > Sources > Page,在
index.js
第三行加入斷點。
👉 const result = double(number);
暫停後試試下方三種 Step 按鈕 ->
- Step over next function call
- Step into next function call
- Step out of current function
Asynchronous
在 index.js
第十三行加入斷點。
👉 setTimeout(() => console.log(1));
暫停後試試下方兩種 Step 按鈕 ->
- Step into next function call
- Step
Threads
在 index.js
第十九行加入斷點。
👉 new Worker('worker.js');
暫停後試試下方兩種 Step 按鈕 ->
- Step into next function call
- Step