hw06_18.html 375 B

1234567891011121314151617
  1. <header>
  2. <h1>For Select Option</h1>
  3. </header>
  4. <body>
  5. <script>
  6. const currencies = ["USD", "EUR", "GBP", "UAH"];
  7. let str = "<select>";
  8. for (let currency of currencies) {
  9. // YOUR MAGIC HERE
  10. str += `<option>${currency}</option>`;
  11. }
  12. str += "</select>";
  13. document.write(str);
  14. </script>
  15. </body>