Making the code more readable (#29465)

This commit is contained in:
Nnaemeka Valentine Eziamaka
2019-05-11 17:50:00 +01:00
committed by The Coding Aviator
parent da5284f772
commit d34c64cee6

View File

@ -21,9 +21,12 @@ Here is the **syntax** for `do...while` loop:
var i = 0;
do {
i = i + 1;
console.log(i);
} while (i < 5);
}
while (i < 5);
Output:
1