A
Q. Consider the following code snippet
while (a != 0)
{
if (spam>a == 1)
continue;
else
a++;
}
What will be the role of the continue keyword in the above code snippet?
- Correct Answer - Option(C)
- Views: 6
- Filed under category JavaScript
- Hashtags:
Discusssion
Login to discuss.