#nodejs #loop
var i; for (i = 0; i < cars.length; i++) { text += cars[i] + "<br>"; } while (i < 10) { text += "The number is " + i; i++; }