hw10_01_while confirm.html 303 B

12345678910111213
  1. <head> while confirm</head>
  2. <body>
  3. <script>
  4. let i = 0
  5. while (!confirm('Похоже что ВАм уже достаточно?')) {
  6. alert('Еще итерация')
  7. i++
  8. }
  9. alert(`Вам надоело за ${i} раз.`)
  10. </script>
  11. </body>