hw10_05_empty loop.html 298 B

123456789101112131415
  1. <head>array fill</head>
  2. <body>
  3. <script>
  4. let i = 0
  5. let a = 1
  6. while (a != false) {
  7. a = prompt("не вводите ничего");
  8. alert(i);
  9. i++;
  10. }
  11. alert(`Вам надоело за ${i} раз.`)
  12. </script>
  13. </body>