Update cookies preferences
Promotic

continue - statement of language JavaScript

Description:
Terminates one iteration in the for loop and continues with the next iteration in the loop.
Syntax:

continue
See also:
- for
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);
}
PROMOTIC 9.0.31 SCADA system documentation MICROSYS, spol. s r.o.

Send page remarkContact responsible person
© MICROSYS, spol. s r.o.