- 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
JavaScript MCQ Javascript loops MCQ
⚠ Report ✓ Question Verified Copy Link
continue keyword in the following JavaScript code snippet?
while (a != 0)
{
if (a == 1)
continue;
else
a++;
}
Learn More MCQ Questions from JavaScript MCQ Javascript loops MCQ