DoWhile is a conditional looping function. Use this function when you need to loop while something is true.
DoWhile
The condition needs to evaluate to true or false. The function will loop while the condition is true.
When to test the condition, before or after the loop.
Use 'After' when you want to execute the body of the loop at least once, even if the condition fails.
Control Flow
Last updated 9 months ago