For Loop

For Loops are used to run functions a specific number of times. You are presented with two options: the number of loop iterations, and the loop index variable.

Number of Loop Iterations: the amount of times you want this loop to execute

Loop Index Variable: the variable that maintains the index of the current iteration. Starting at 0, the current iteration that the loop is working through.

There are other special commands that can be used with loops which will be seen in the upcoming pages.

Loop: Break Loop: Continue Loop: Save Entry Loop: Remove Entry

Last updated