- A It does nothing but a simple breakpoint
- B It debugs the error in that statement and restarts the statement's execution
- C It is used as a keyword that debugs the entire program at once
- D It is used to find error in the statement
- Share this MCQ
Answer:
A
Share this MCQ
The debugger statement typically has no effect. However, if a debugger is available and running, the implementation may (but is not required to) perform some kind of debugging action.
In practice, this statement functions like a breakpoint, causing the execution of JavaScript code to stop and allowing you to use the debugger to print out the values of variables.
Share this MCQ