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 Keys

Not sure how to create a new variable inside the hash if the key? method = true.

I've tried plenty of different ways, I'm getting argument error. It's expecting 2 arguments and it's getting 1. Pleas help.

hash.rb
hash = { "name" => "Bread", "quantity" => 1, "calories" => 100 }
hash.key?("calories")
if true
  hash.store("food")
end

1 Answer

Carl, the method is has_key?, and you need to call it in the if... statement:

if hash.has_key?("calories")
  food = true
end

From my understanding key? works the same way has_key? does. Also I suppose I was overthinking this challenge. Thank you for helping me understand this.