Skip to content

JavaScript exercises for Code Your Future students

Notifications You must be signed in to change notification settings

panditita/js-exercises

 
 

Repository files navigation

JavaScript exercises

  1. Fork this repo
  2. Clone it to your machine
  3. Open it in your code editor.
  4. In the terminal, run this command to add RARMATEI as an upstream remote. git remote add upstream git@github.com:rarmatei/js-exercises.git
  5. Run the command git remote -v. You should have two remotes:
  • origin pointing to your github repo, and
  • upstream pointing to RARMATEI
  1. Run the command npm install.

  2. Run the command npm run test.

This won't do anything in the beginning, but as we work through the exercises you will start seeing some RED messages pop-up which you will have to turn GREEN.

  1. Keep this terminal window open, and launch a second terminal.
  2. Navigate to the js-exercises folder.

During the class (and for homework), we will go through each folder, reading the README and completing the exercises.

For homework, we expect you to add and commit your changes on a new branch (not master), and push them to your own repo (origin). You will then need to open a pull request so we can review your code.

Opening a pull request

A pull request is a request to merge one branch into another. You will request to have a branch of your (origin) repo merged into the master branch of this (upstream) repo.

We won't actually merge your branch, but the pull request will allow us to view and comment on your work.

Assuming you have created a branch called my-homework (for example, using git checkout -b my-homework) to contain your work

  1. Add each individual file you have changed using git add [path to file]
  2. Commit your changes using git commit (you can add and commit changes multiple times as you complete exercises)
  3. Push your changes to your own repo using git push origin my-homework
  4. Go to https://github.com/rarmatei/js-exercises and click the New pull request button
  5. This creates a request to merge your master to our master. You shouldn't have changes on your master branch, so select your branch (e.g.my-homework) on the right instead.
  6. Give your pull request a title e.g. Daniel's homework.
  7. Click Create pull request

About

JavaScript exercises for Code Your Future students

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 84.2%
  • HTML 12.9%
  • CSS 2.9%