🎴 Flashcard Mode

JavaScript Fundamentals Quiz

Card1 / 13
Mastered0
Review0
QuestionClick to flip

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

AnswerClick to flip back
A
Continue label
💡 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.

Change Mode