The switch statement is somewhat similar to an if/else statement but can be easier
to read when there are many different possible conditions.
Example 1
number count = 1; while(count <= 10) { runnerLog(count); count ++; }
The switch statement is somewhat similar to an if/else statement but can be easier
to read when there are many different possible conditions.
number count = 1; while(count <= 10) { runnerLog(count); count ++; }