Iterate with Do While Loops Javascript

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);
Source

Also in JavaScript: