en.javascript.info/1-js/02-first-steps/13-while-for/5-replace-for-while/solution.md

80 B

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