Rofihimam

Untitled

Aug 28th, 2019
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.35 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Variable On Javascript Rofi'ul Himam XI RPL 2</title>
  5. </head>
  6. <body>
  7.     <h1>Javascript Variables</h1>
  8.  
  9.     <p>Pada contoh ini x, y, & z adalah variable</p>
  10.  
  11.     <p id="demo"></p>
  12.  
  13.     <script>
  14.         var x = 5;
  15.         var y = 6;
  16.         var z = x + y;
  17.         document.getElementById("demo").innerHTML = z;
  18.     </script>
  19. </body>
  20. </html>
Add Comment
Please, Sign In to add comment