Which of the following JavaScript statements works like a breakpoint?

C) debugger

debugger keyword stops the execution of JavaScript, and calls (if available) the debugging function.

Read more here and here.