learn-co-curriculum / js-hashes-lab

Other
0 stars 2 forks source link

Recipe Maker

Objectives

Instructions

You'll want to be able to use the function like this:

var tacoIngredients = {tortillas: "1 dozen, small"}
addIngredient(tacoIngredients, "cheese", "a lot")
tacoIngredients //=> {tortillas: "1 dozen, small", cheese: "a lot"}

View Recipe Maker on Learn.co and start learning to code for free.

View Hashes in JS Lab on Learn.co and start learning to code for free.