Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. var myArray = [
  2. {
  3. nestedArray: ["a", "b", "c"]
  4. },
  5. {
  6. nestedArray: ["d", "e", "f"]
  7. }
  8. ]
  9.  
  10. console.log("myArray:", myArray);
  11. console.log("myArray[0]", myArray[0]);
  12. console.log("myArray[0].nestedArray", myArray[0].nestedArray);
  13. console.log("myArray[0].nestedArray[0]", myArray[0].nestedArray[0]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement