en.javascript.info/1-js/02-first-steps/12-while-for/5-replace-for-while/solution.md
Ilya Kantor 9ad9063d00 up
2016-11-28 21:35:42 +03:00

80 B

let i = 0;
while (i < 3) {
  alert( `number ${i}!` );
  i++;
}