Created
November 18, 2014 02:16
-
-
Save esparkman/61b955c42f1f3f2c4fb1 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
| 2.1.3 :001 > hasarry = [{"foo" => "bar"}, {"baz" => "buzz"}] | |
| => [{"foo"=>"bar"}, {"baz"=>"buzz"}] | |
| 2.1.3 :002 > hasarry[0]["foo"] | |
| => "bar" | |
| 2.1.3 :003 > hasarry[0]["baz"] | |
| => nil | |
| 2.1.3 :004 > hasarry[1]["baz"] | |
| => "buzz" | |
| 2.1.3 :005 > |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment