Single Choice
Easy
QWhat is the purpose of the continue keyword in the following JavaScript code snippet?
while (a != 0)
{
if (a == 1)
continue;
else
a++;
}
ID: #5066
Javascript loops MCQ
216 views
Question Info
#5066Q ID
EasyDifficulty
Javascript loops MCQTopic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer
Explanation
The continue keyword causes the loop to move on to the next iteration from the point at which it is encountered, whereas the break keyword exits the loop entirely.
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic