You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Node version 18: After installing nvm, run nvm install 18 and nvm use 18
Getting Started
Clone this repository.
Open a terminal and cd into the repository.
Make sure you're using node version 18 by running nvm use. nvm will read the version we want from the .nvmrc file in the root of this repo.
Run npm install to install dependencies.
Completing Exercises
Create a new branch based on master with git checkout master, then git pull, then git checkout -b <branch-name>.
For each exercie, write your code in the regular .js files in each folders. The .spec.js files contain the tests.
To run the tests and check your work, run npm test <folder>, for example, npm test exercise1.
When you finish working on one part, commit your work to your branch with git add <files> or git add -A for all files, then git commit -m '<commit message>'.
When you're ready to submit your work, push your branch to the remote repository and open a pull request on GitHub.