hw07_15.html 520 B

123456789101112131415161718
  1. <head>Currency drop down</head>
  2. <body>
  3. <script>
  4. fetch(`https://open.er-api.com/v6/latest/USD`)
  5. .then(response => response.json())
  6. .then(data => {
  7. const currencies = Object.keys(data.rates);
  8. let str = "<select>";
  9. for (let currency of currencies) {
  10. str += `<option>${currency}</option>`;
  11. }
  12. str += "</select>";
  13. document.write(str);
  14. });
  15. </script>
  16. </body>