- Please Fork & Clone this repo.
- For each problem, modify the relevant file in the
challenges
folder. We encourage you to commit often and push your changes to github. - You will submit this problem set for review.
There are a number of options for running/executing your code. They all have their uses, so we encourage you to learn all of them:
- From the browser:
- Using the Chrome Developer Console
- Tip: Open the
index.html
file and open your Dev Console to ensure your JS files are being loaded console.log()
and adddebugger
s to your heart's content!
- Tip: Open the
- Using the Chrome Developer Console
- From the command line:
- Using the Node REPL / Shell
- Tip: Type
.exit
to quit. Use↑
and↓
to cycle through your code history.
- Tip: Type
- Using the
node some-file.js
command- Tip: Use
ctrl
+c
(shortcut) to quit "hanging" programs. And make sure toconsole.log("your output")
.
- Tip: Use
- Using the Node REPL / Shell