DoWhile
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.