HOW-TO Create an Array of Hashes in Ruby HOW-TO Create an Array of Hashes in Ruby arrays arrays

HOW-TO Create an Array of Hashes in Ruby


You're using a Symbol as the index into the Hash object that uses String objects as keys, so simply do this:

@collection = array[0]["firstname"]

I would encourage you to use Symbols as Hash keys rather than Strings because Symbols are cached, and therefore more efficient, so this would be a better solution:

def collection  hash = { :firstname => "Mark", :lastname => "Martin", :age => 24, :gender => "M" }  array = []  array.push(hash)  @collection = array[0][:firstname]end


You have defined the keys of your hash as String. But then you are trying to reference it as Symbol. That won't work that way.

Try

@collection = array[0]["firstname"]


You can do this:

@collection = [{ "firstname" => "Mark", "lastname" => "Martin", "age" => "24", "gender" => "M" }]