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 iRow;
for (iRow = 0; iRow < 5; iRow++)
{
if (iRow == 3)
{
continue;
}
Pm.Debug("iRow = " + iRow);
}