There are two parts to this problem set:
- A written response section
- JavaScript Array exercises
For Coding Exercises:
-
From your project's root folder, run
npm install
to load project dependencies. -
Your coding exercises live in the
problems
directory. Here, we have four files:exercises.js
Where you will code your solutionsexercises.test.js
Your test fileREADME.md
The instructions and prompts for your exercises.index.html
-
Test your code often by running
npm test
. -
Check for style by running
eslint problems/exercises.js
in the terminal. If you get an erroreslint: command not found
, runnpm install -g eslint
first. -
You are not done with your exercises until all tests pass and there are no eslint errors.
Note: We have provided an
index.html
so that you can test and run your code in the browser and use Chrome Dev tools.
For Short Responses:
-
Your written response questions live in the
short-response.md
file. -
Record your answers without removing the original questions.
-
Use complete sentences and style appropriately with markdown.