Back to Freecodecamp

Step 1

curriculum/challenges/english/blocks/workshop-recipe-tracker/66fbcdfed6848e48947dbbc9.md

latest470 B
Original Source

--description--

In this workshop, you will create a recipe tracker using JavaScript objects.

Start by creating an empty array named recipes. This is the array you'll push the recipe objects into later.

--hints--

You should create an array named recipes.

js
assert.isArray(recipes);

Your recipes array should be empty.

js
assert.isEmpty(recipes);

--seed--

--seed-contents--

js
--fcc-editable-region--

--fcc-editable-region--