js-fundamentals-dan
v1.0.1
Published
Training js Fundamentals
Downloads
1
Readme
JS Fun-damentals
Note: published to NPM as js-fundamentals-dan
Quickstart
- Fork this repository (important)
- Clone it to your machine
$ git clone [email protected]:digital-futures-academy/js-fundamentals.git
$ cd js-fundamentals
- Complete the first challenge!
- For each successive challenge, add files in the
src
directory. - Stage your changes
git add <path to file>
- commit your changes
git commit -m <commit message>
- Then push your changes to your forked repository
git push origin main
- Open a PR back to this repository
NB: Only open 1 Pull Request. Give your PR a title that is your first name and last name. Your PR will automatically update as you push more work to your repository - so you should only ever need to have 1 PR for all the work you do for these exercises.
Then repeat steps 4-6 for each challenge!
The directory challenges
holds files challenges 1-11, named accordingly. The directory src
is currently mostly empty - this is where you should add files with the implementation of each challenge. Sometimes you might need to copy paste your previous challenge so you can extend it. Therefore there should be a src
file for every challenge file. Eg: challenges/challenge3.md
and src/challenge3.js
.