methods with hash ruby code example
Example 1: how to make a new hash ruby
my_hash = Hash.new #=> { }
# OR
my_hash = {}
Example 2: how to access hash value ruby
my_hash["key"] #=> "value"
my_hash = Hash.new #=> { }
# OR
my_hash = {}
my_hash["key"] #=> "value"