Advertisement
Guest User

Untitled

a guest
Jan 16th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. // Setup
  2. var myArray = [[1,2,3], [4,5,6], [7,8,9], [[10,11,12], 13, 14]];
  3.  
  4. // Only change code below this line.
  5. // Call 1st index of select array(2), then call 2nd index of the select array (1)
  6. // Easy dont?
  7. var myData = myArray[2][1];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement