Skip to content

Latest commit

 

History

History
34 lines (19 loc) · 561 Bytes

README.md

File metadata and controls

34 lines (19 loc) · 561 Bytes

Learn to Code JavaScript 103

Create and checkout a new branch

git branch -b <branch>

Checkout branch

git checkout <branch>

Checkout master

git checkout master

Step 1

Step 1 is the hardcoded HTML for the dynamic menus we will refactor to JavaScript in Step 2.

Checkout step1

git checkout js103-step1

Step 2

Step 2 is a JavaScript version of dynamic menus.

Checkout step2

git checkout js103-step2

Step 3

Step 3 adds a main with a gallery of articles in static HTML

Checkout step3

git checkout js103-step3