M
Q. Consider the following code snippet.
What will be the role of the continue keyword in the above code snippet?
Code:
while (n != 0)
{
if (n == 1)
continue;
else
n++;
}
{
if (n == 1)
continue;
else
n++;
}
- Correct Answer - Option(D)
- Views: 121
- Filed under category JavaScript
Discusssion
Login to discuss.