InterviewSolution
Saved Bookmarks
| 1. |
What is the use of the debugger keywords in JavaScript? |
|
Answer» The JavaScript DEBUGGER keyword PLACES a breakpoint in the code. The debugger halts the program's execution at the point where it is APPLIED. We can now MANUALLY begin the execution flow. If an exception OCCURS, the execution will come to a complete stop on that line. |
|