Multiple choice javascript

You are working on a JavaScript project. What is used to restart the inner most loop?

  1. Abort

  2. Breakloop

  3. Stop

  4. Continue label

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

In JavaScript, the 'continue' statement restarts the innermost loop by skipping remaining code in the current iteration and beginning the next iteration. 'break' exits the loop entirely, while 'abort' and 'stop' are not valid loop control keywords.