Advertisement
ph4x35ccb

array bidirecional

May 15th, 2019
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title></title>
  5. </head>
  6. <body>
  7. <script>
  8.     var myArray=[
  9.         [1,2,3],
  10.         [4,5,6],
  11.         [7,8,9]
  12.     ]
  13.     document.write(myArray[1][1]);
  14. </script>
  15. </body>
  16. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement