JavaScript

While

while (count < 10){
        document.write(count + "<br/>");
 }


do {
        document.write(a[i] + "<br/>");
 } while (++i < a.length);

José M. Vidal .

28 of 65