0
JavaScript (do.....while and while) Loops
What is the advantage of the do.......while loop over the while loop?????
1 Answer
+ 2
The do... while loop will execute at least one time the expression before the statement is checked. The while checks the statement BEFORE the expression is executed.