Sythz

Untitled

Aug 28th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.62 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7.     <title>Hanif Abyan Ayyasyi XI RPL 2</title>
  8. </head>
  9. <body>
  10.     <h2>JavaScript Variable 2</h2>
  11.     <p id="demo"></p>
  12.  
  13.     <script>
  14.         var price1 = parseFloat(prompt("Masukan harga pertama " ));
  15.         var price2 = parseFloat(prompt("Masukan harga kedua "));
  16.         var total = price1 + price2;
  17.         document.getElementById("demo").innerHTML = "Total Harga : Rp.  " + total;
  18.     </script>
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment