Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Ruby Ruby Collections Ruby Hashes Working with Hash Values

Cristian Hernandez Barrios
Cristian Hernandez Barrios
3,324 Points

What I'm Missing?

I'm not sure what I'm missing here, it's say that i'm not calling the method has_value?

hash.rb
grocery_item = { "item" => "Bread", "quantity" => 1, "brand" => "Treehouse Bread Company" }

if grocery_item.has_value?("Bread")
  grocery_item = {"food" => true}
end

1 Answer

Steven Parker
Steven Parker
229,644 Points

Two issues stand out at first glance:

  • the conditional is missing the "then" keyword
  • the entire hash is being replaced with a single key/value instead of adding a new one to it
Cristian Hernandez Barrios
Cristian Hernandez Barrios
3,324 Points

Thank You, you're right I'm missing the then keyword and how to add a new item