0

JavaScript (do.....while and while) Loops

What is the advantage of the do.......while loop over the while loop?????

24th Apr 2020, 3:47 AM
Yuvraj Motiramani
Yuvraj Motiramani - avatar
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.
24th Apr 2020, 7:43 AM
Abdoul Hakim
Abdoul Hakim - avatar