首页 > 技术文章 > Chrome dev tool中Step和 Step Into的区别

eret9616 2021-03-08 13:11 原文

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'))

推荐阅读