AlyxDumbass

Untitled

Aug 28th, 2019
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.42 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Javascript Variable 2 Dean Beniqno XI RPL 2</title>
  5. </head>
  6. <body>
  7.  
  8.     <h1>Javascript Variables 2</h1>
  9.     <p id="demo"></p>
  10.  
  11.     <script>
  12.         var price1 = 5;
  13.         var price2 = 6;
  14.         var total = price1 + price2;
  15.         document.getElementById('demo').innerHTML = "totalnya adalah :" + total;
  16.         document.getElementById('demo').innerHTML = "totalnya adalah :" + total;
  17.     </script>
  18.  
  19. </body>
  20. </html>
Add Comment
Please, Sign In to add comment