Advertisement
Felanpro

Arrays Basic

Dec 4th, 2015
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5.  
  6.  
  7. </head>
  8.  
  9. <body>
  10.  
  11.  
  12. <p id="demo"></p>
  13.  
  14.  
  15. <script>
  16. var cars = ["Volvo","Saab","Nissan"];
  17. document.getElementById("demo").innerHTML = cars[1]; //0 = Volvo :)
  18. </script>
  19.  
  20.  
  21. </body>
  22.  
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement