Advertisement
RizkyAnugrah

Untitled

Sep 11th, 2019
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.58 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Array adalah objek(Rizky XI-RPL2)</title>
  5.     <style type="text/css">
  6.         #objek{
  7.             width: 50%;
  8.             outline-style: inset;
  9.             outline-color: rgb(218, 20, 20);
  10.             color:rgb(66, 66, 70);
  11.             background-color:rgb(231, 230, 230);
  12.             font-family: arial;
  13.             font-size: 18px;
  14.             text-align: center;
  15.         }
  16.     </style>
  17. </head>
  18. <body>
  19.     <p id="objek">
  20.         <script>
  21.             var person = {firstName:"Rizky", lastName:"Anugrah", age:16};
  22.             document.getElementById("objek").innerHTML = "Nama Depan = " + person["firstName"];
  23.         </script>
  24.     </p>
  25.  
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement