While loops are similar to for loops but it can be easier (or sometimes the only way) to determine how many times the loop should go.
Example 1
number count = 1; while(count <= 10) { runnerLog(count); count ++; }
While loops are similar to for loops but it can be easier (or sometimes the only way) to determine how many times the loop should go.
number count = 1; while(count <= 10) { runnerLog(count); count ++; }