Reputation: 1470
Is there any real difference between do-while
loops and while
loops in Javascript?
I know that do-while
executes the code block before checking the condition, and while
checks the condition first, but are there any other differences like performance?
Upvotes: 1
Views: 85