Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 882 Bytes

File metadata and controls

26 lines (21 loc) · 882 Bytes

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 script.js so it uses the new ES6 syntax.
  • Re-write the functions as arrow functions.
  • Change the variables to const and let.

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.