是否可以使用 JavaScript 调试器关键字进入源代码并退出源代码

Is it possible to step in source code and step out from source code with JavaScript debugger keyword

我最近认识到 JavaScript debugger 关键字在 JavaScript 代码中放置断点并像这样调试它:

<script>

//some code....
debugger;
//some code....

</script>

。我在 Google Chrome 浏览器中使用了它,它显示为如图所示

您可以使用 F10 单步执行。

我想知道,请问源码中有没有Step in和Step out的快捷键。

所以经过长时间的谷歌搜索,我终于找到了这个并喜欢分享它:

F10 or Ctrl+' : Step over
F11 or Ctrl+; : Step into
F8 or Ctrl+/ : Continue
Shift+F11 : Step out
Ctrl+G : Go to Line