For Coding Exercises:
-
Run
npm install
from the root directory to load project dependencies. -
Complete coding exercises in the
exercises.js
file in theproblems
directory.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
from the root directory. -
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:
- Write your responses directly in the
short-response.md
file. - Record your answers without removing the original questions.
- Use complete sentences and style appropriately with markdown. As you commit and push changes, you will see your rendered markdown on GitHub.