hw06_17.html 225 B

12345678910111213
  1. <header>
  2. <h1>For alert</h1>
  3. </header>
  4. <body>
  5. <script>
  6. const names = ["John", "Paul", "George", "Ringo"];
  7. for (let name of names) {
  8. alert(`Hello, ${name}`);
  9. }
  10. </script>
  11. </body>