a small set of exercises pertinent to front end programming!
- your computer
- nodejs
- a web browser
- clone &
cd [this-directory!]
npm install
npm test
- this will fire up a browser. please follow the onscreen instructions! your objective is to make all tests pass.
- by default we will use
chrome
. if you want to usefirefox
orsafari
, please edittestem.json
accordingly for the exercise. - disregard any security warnings at the top of the chrome browser.
- by default we will use
- to complete the tasks, it's highly recommended to use the debug engine included in your browser. make use of
debugger
statements in your code, as your code will be transpiled before it's shipped to your browser. - lastly, the test suite will automatically re-compile and run in the browser every time you make a change. be aware of this convenience 😄.
- this will fire up a browser. please follow the onscreen instructions! your objective is to make all tests pass.