hw07_14.html 695 B

1234567891011121314151617
  1. <head>Currency rate</head>
  2. <body>
  3. <script>
  4. let toCurrency = prompt("Введите приобретаемую валюту").trim().toUpperCase();
  5. let fromCurrency = prompt("Введите валюту платежа").trim().toUpperCase();
  6. let currencyAmount = +prompt("Введите сумму платежа").trim().toUpperCase();
  7. fetch(`https://open.er-api.com/v6/latest/${fromCurrency}`)
  8. .then(response => response.json())
  9. .then(data => {
  10. totalCurrency = currencyAmount * data.rates[toCurrency];
  11. alert("Total amount: " + totalCurrency + " " + toCurrency);
  12. });
  13. </script>
  14. </body>