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 Build a Grocery List Program Build a Grocery List Program: Part 1

What does this line of code do?

hash = { "name" => name, "items" => Array.new }

I know it's creating a hash. But what does the => do?

1 Answer

Ling Lei
Ling Lei
6,099 Points

=> is assigning / mapping the value. In other languages hash can be called something like dictionary.

so the first has item has a key of "name" and a value of the variable name and the second hash value has the key of "items" and the value of an array.