script1.js 641 B

12345678910111213141516171819202122232425
  1. let cash = document.getElementById('cash');
  2. let out = document.getElementById('out');
  3. let cash2 = document.getElementById('cash');
  4. function convert (cash) {
  5. out.innerHTML = cash * 26.3;
  6. }
  7. // ____________________________________
  8. // Вариант второй без привязки к index.html(через prompt и alert)
  9. // function convert () {
  10. // let amount = prompt("Введите сумму в долларах. ","");
  11. // let courseParameter = prompt("Введите курс доллара")
  12. // let summ = courseParameter * amount;
  13. // alert(summ.toFixed(2) + " Uah");
  14. // }
  15. // convert()