Type Statement
Format continue [label];
Commentary
The continue command will break a current loop upon a given condition being arrived at and continue on to the next value achievable. In a while loop, it returns to the set condition. In a for loop, it jumps to update the expression
Sample code - QC 2 JavaScript
for (i = 0; i <5; i ++)
{(
if (i == 2) continue;
outputs [0] = i;
} )
Sample code - QC 3 JavaScript
function (__number outputNumber) main (__number inputNumber[1])
{
var result = new Object();
for (i=0; i<5; i++)
{
if (i == 2) continue;
}
result.outputNumber = i;
return result;
}