Basic JavaScript Mini

Topics:

  • GitHub/Git
  • Flow: fork -> clone -> (add/commit/push) -> pull request
  • arrow functions =>
  • const
  • let
  • String templates

Project Description

Initialize Project

  • Change the JavaScript in the script.js file to use the new ES6 syntax.
  • Change the functions to be arrow functions.
  • Change the variables to const and let.
  • Change any strings you may encounter to use 'template literals'.

Steps for submitting a pull request

  • Change your current working directory to your project: cd /path/to/project, where /path/to/project is the filesystem path to your project directory.
  • Step 1: Add all of your changes: git add --all
  • Step 2: Commit your changes: git commit -m "Changed code to ES6"
  • Step 3: Push your changes: git push origin master
  • Step 4: On GitHub submit a pull request back to the main repo.

We do code reviews based off of this pull request process.