Hashes in Ruby Discussion
Discussion for
Hashes in Ruby
If we use h = HashWithIndifferentAccess.new({key: "value"})
it will allow us to access the value through both h[:key]
and h["key"]
.
Hey Yago, while this is true, HashWithIndifferentAccess is only available via ActiveSupport. This section of the learning path is focused purely on Ruby.
I am coming from javascript and most of the concepts are similar but you do an amazing job explaining everything. Good job!