Guest User

Untitled

a guest
Jun 21st, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <p id="demo1"></p>
  5. <p id="demo2"></p>
  6.  
  7. <script>
  8. var reccords = {1:{1:[10,'zorro'],2:[25,'ro']}, 2:{1:[20,"dim"]}}
  9.  
  10. var time=5;
  11. reccords[3] = {time:[2, 'michel']}; //time isn't considered as a variable
  12.  
  13. document.getElementById("demo2").innerHTML = reccords[3]['time'][0];
  14. document.getElementById("demo1").innerHTML = reccords[3][5][0]; //does not work, how to make it work?
  15.  
  16.  
  17. </script>
  18.  
  19. </body>
  20. </html>
Add Comment
Please, Sign In to add comment