Using Hashes : Hash Creation « Hash « Ruby






Using Hashes


pizza = {"first_topping" => "pepperoni", "second_topping" => "sausage"}
p pizza["first_topping"]
p pizza
p pizza.length
receipts = {"day_one" => 5.03, "day_two" => 15_003.00}
p receipts["day_one"]
p receipts["day_two"]

 








Related examples in the same category

1.A hash ( associative array or a dictionary) is an array holding a collection of data,
2.Hashes use braces instead of brackets to let the Ruby interpreter know what is being created.
3.Hash has a class method [], which is called in either one of two ways: with a comma separating the pairs
4.Instead of integers, you could use strings for the keys
5.The hash definition is enclosed in curly braces, whereas an array is defined in square brackets.
6.Element Assignment
7.you can store numbers in hashes
8.Creating a Hash with a Default Value
9.Create a hash with default value
10.creates a new default object each time