Chrome dev tool中Step和 Step Into的区别

https://developers.google.com/web/updates/2018/01/devtools#async

 

Step into: DevTools assumes that you want to pause in the asynchronous code that eventually runs

Step: DevTools pause in code as it chronologically ran

Consider this example:

setTimeout(() => {
    console.log('inside')
}, 3000);
console.log('outside')

After stopping on the breakpoint on the first line (setTimeout(() => {).

Step into: it waits 3 seconds and stops on the 2nd line (console.log('inside'))

Step it pauses on the 4th line (console.log('outside'))

posted @ 2021-03-08 13:11  hh9515  阅读(262)  评论(0编辑  收藏  举报