home03_003.html 193 B

123456789
  1. <head></head>
  2. <body>
  3. <script>
  4. const rate = 1.5;
  5. let money1 = +prompt("Enter money");
  6. alert("Yours money cost: " + (money1 * rate).toFixed(2));
  7. </script>
  8. </body>