DoWhile
DoWhile
is a conditional looping function. Use this function when you need to loop while something is true.
Properties
Condition
The condition needs to evaluate to true or false. The function will loop while the condition is true.
Test
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.
Tutorial video
Links
Last updated