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 trialJason Lucero
6,969 PointsWorking w/ Hash Keys Challenge: has_key? method am I crazy????
So this challenge wants us to use the has_key? method to see of a variable exists in the hash and if true to also add a new variable to the hash. I run this code:
hash = { "name" => "Bread", "quantity" => 1, "calories" => 100 } if hash.has_key?("calories") == true hash["food"] = true end
and get BUMMER! The food variable was not found
However I also set this up in my terminal and added a puts hash and got this back:
eljson$ ruby hash.rb {"name"=>"Bread", "quantity"=>1, "calories"=>100, "food"=>true}