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 trialNithin Rajan
1,737 PointsAdd the grocery_item hash to the items array inside of the grocery_list hash.
Add the grocery_item hash to the items array inside of the grocery_list hash.
2 Answers
Tobias Mahnert
89,414 PointsWhat you do is basically adding something from one list to an item in another list. the thing is an array called items and is located in the grocery_list. grocery_list is the hash. Hash defines how this kind of data storage is decleared. then you have .push which is basically the code that tells what to do with this information. and grocery list in the brakets is the thing that you want to put into the items array
grocery_list['items'].push(grocery_item)
please let me know if you have any other questions
Tobias Mahnert
89,414 PointsWhat you do is basically adding something from one list to an item in another list. the thing is an array called items and is located in the grocery_list. grocery_list is the hash. Hash defines how this kind of data storage is decleared. then you have .push which is basically the code that tells what to do with this information. and grocery list in the brakets is the thing that you want to put into the items array
grocery_list['items'].push(grocery_item)
please let me know if you have any other questions