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 215 views
Question Info
#5066Q ID
EasyDifficulty
Javascript loops MCQTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A The continue keyword restarts the loop
  • B The continue keyword skips the next iteration
  • C The continue keyword skips the rest of the statements in that iteration
  • D The continue keyword breaks out of the loop
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.

Share This Question

Challenge a friend or share with your study group.