While
While Loops repetitively execute a block of code as long as a specified condition is true.
For example, the loop in this example will repetitively execute its block of code as long as the variable i is less than 5:
Be careful to avoid infinite looping if the condition is always true!
Last updated
Was this helpful?