Bird
0
0

Which keyboard shortcut allows you to continue execution until the next breakpoint in the Node.js debugger?

easy📝 Conceptual Q2 of 15
Node.js - Debugging and Profiling
Which keyboard shortcut allows you to continue execution until the next breakpoint in the Node.js debugger?
An
BCtrl + C
Cc
Ds
Step-by-Step Solution
Solution:
  1. Step 1: Identify debugger commands

    In the Node.js debugger, typing c continues execution until the next breakpoint.
  2. Step 2: Understand other options

    n steps to next line, s steps into function, Ctrl + C exits debugger.
  3. Final Answer:

    c -> Option C
  4. Quick Check:

    Continue command = c [OK]
Quick Trick: Type 'c' to continue running until next breakpoint [OK]
Common Mistakes:
  • Pressing Ctrl+C which quits debugger
  • Using 'n' which steps to next line
  • Using 's' which steps into functions

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Node.js Quizzes