Iteration Statements

Iteration Statements

Iterations are where the code goes through the same piece until a condition is no longer met, the format of the condition and placement of the condition will vary depending on the specific statement you are using. This can be done with for, while, do-while. Iterations are also commonly called loops.

For more information go to the links below;

for statements;

while;

do-while;

for each (used with arrays);