Created
June 12, 2013 02:09
-
-
Save ashleygwilliams/5762354 to your computer and use it in GitHub Desktop.
notes about arrays and hashes for alex
This file contains 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
myArray = [1,2,3,4,5] | |
myArray[0] = 1 | |
myArray[1] = 2 | |
myArray.each do |arr| | |
puts arr | |
end | |
myHash = {"a"=>1, "b"=>2, "c"=>3, "d"=>4, "e"=>5} | |
myHash["a"] = 1 | |
myHash["b"] = 2 | |
myHash["d"] = 4 | |
myHash.each do |key, value| | |
puts value | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment