Programming exercises for a beginning JavaScript programmer.
These exercises use Strings, loops, Objects, and Arrays to solve logic problems.
Make sure that Node.js and npm are installed. Then, from this directory type:
npm installThis will install a folder named node_modules/ into this folder.
You will be writing functions in the JavaScript files found in the exercises/
folder.
Write your functions and then run:
npm testThe goal is to get the test suite to pass all conditions. Good luck!
You may want to run the test suite anytime a file in exercises/ changes:
npm run watchThis command will continuously run the test suite and stop on the first failing test.