diff --git a/README.md b/README.md index 688c1e5..6f4596b 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,32 @@ # JavaScript-Projects A new repo to store The Tech Academy's JavaScript coding projects. -This repository will hold the JavaScript projects I've completed as I advance through The Tech Academy's curriculum, beginning with JS fundamentals and progressing to their Tic-Tac-Toe, Pizza Menu, and Calculator projects. +This repository will hold the JavaScript projects I've completed as I advance through The Tech Academy's curriculum, beginning with JS fundamentals and progressing to their "Tic-Tac-Toe", "Calculator", "Pizza Menu", and "ToDo App" projects. -- [x] Tic-Tac-Toe Project -- [x] Calculator Project -- [ ] Pizza Menu Project +- [x] [Tic-Tac-Toe Project](TicTacToe) +- [x] [Calculator Project](Calculator) +- [x] [Pizza Menu Project](Pizza_Project) +- [x] [ToDo App Project](ToDo_App) + +### Tic-Tac-Toe Project: +The classic game, played against a computer opponent with a max of nine moves: +- All logic written in JavaScript +- HTML & CSS used to style the game components + +### Calculator Project: +Capable calculator with the basic features: +- Addition, subtraction, multiplication & division performed on 1st & 2nd operands, + - Allows only a single decimal point in all operations +- "AC" key clears the display + +### Pizza Menu Project: +A responsive app to record a pizzeria's online orders: +- Different prices for different-sized pizzas + - A logic check ensures one free topping per order +- DOM updates as order changes + +### ToDo App Project: +A minimalist to-do app where tasks are parsed into JSON strings: +- Tasks are permanently displayed onscreen + - Appear in unordered lists in the order they were created + - Each task has a delete button