MCQOPTIONS
Saved Bookmarks
| 1. |
Consider the following code snippetfunction f(o){if (o === undefined) debugger;}What could be the task of the statement debugger? |
| A. | t does nothing but a simple breakpoint |
| B. | t debugs the error in that statement and restarts the statement’s execution |
| C. | t is used as a keyword that debugs the entire program at once |
| D. | ll of the mentioned |
| Answer» B. t debugs the error in that statement and restarts the statement’s execution | |