Created
July 19, 2016 15:59
-
-
Save spacemonkeyvt/c82f58ea07854bab68d143cc806e7fe9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| > nest = [1,2,3, {name: "Vish", address: ["123 fake add", "456 fake add", city: ["toronto", "north york"]]}, ["thingy", "thingy2"]] | |
| #=> [1, 2, 3, {:name=>"Vish", :address=>["123 fake add", "456 fake add", {:city=>["toronto", "north york"]}]}, ["thingy", "thingy2"]] | |
| > nest[3] | |
| #=> {:name=>"Vish", :address=>["123 fake add", "456 fake add", {:city=>["toronto", "north york"]}]} | |
| > nest[3][:address] | |
| #=> ["123 fake add", "456 fake add", {:city=>["toronto", "north york"]}] | |
| > nest[3][:address][2] | |
| #=> {:city=>["toronto", "north york"]} | |
| > nest[3][:address][2][:city] | |
| #=> ["toronto", "north york"] | |
| > nest[3][:address][2][:city][0] | |
| #=> "toronto" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment