es6 do while code example
Example: Iterate with Do While Loops Javascript
var myArray = [];
var i = 10;
do { // The do while loop will always run atleast once before checking the condtion. This will return false and break out of the loop.
myArray.push(i);
i++;
} while (i < 5)
console.log(i, myArray);