hw06_27.html 370 B

12345678910111213141516
  1. <header>
  2. <h1>Reduce HTML</h1>
  3. </header>
  4. <body>
  5. <script>
  6. const currencies = ["", "USD", "EUR", "GBP", "UAH"];
  7. let str = "<select>";
  8. options = currencies.reduce((optionsStr, currency) => optionsStr += `<option>${currency}</option>`);
  9. str += options;
  10. str += "</select>";
  11. document.write(str);
  12. </script>
  13. </body>