Skip to main content

Loops

Loop Definition

The loop operand is designed to execute repetitively for a specified number of iterations, as denoted by the following notation:

while(condition) {}
for(enumerator) {}
forEach(enumerator) {}

See the example below: