Loops For Statement - English

9884 visits



Outline:

Loops - For Statement The for loop is used when you know in advance how many times the script should run. Syntax: for (init; condition; increment) { code to be executed; }