en.javascript.info/1-js/2-first-steps/15-while-for/5-replace-for-while/solution.md
2015-01-21 11:37:57 +03:00

91 B

//+ run
var i = 0;
while (i < 3) {
  alert("номер " + i + "!");
  i++;
}