Description:
Terminates one iteration in the
for loop and continues with the next iteration in the loop.
Skips iterations if i==3:
JavaScriptSelect and copy to clipboard
var i;
for (i = 0; i < 5; i++)
{
if (i == 3)
{
continue;
}
Pm.Debug("i=" + i);
}