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 i;
for (i = 0; i < 5; i++)
{
if (i == 3)
{
continue;
}
Pm.Debug("i=" + i);
}
PROMOTIC 9.0.24 SCADA system documentation MICROSYS, spol. s r.o.

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