📅  最后修改于: 2022-03-11 15:03:47.661000             🧑  作者: Mango
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);