The goal of this project is to practice JavaScript and its paradigms by creatinga TODO app. This app should be able to add TODOs and track the number of totalTODOs as well as the number of unchecked TODOs.
## InstructionsInside of [index.html](/index.html), youll find some starter HTML. You shouldntneed to edit this file at all. Open this file on your computer into any browserto run the project. Make sure that [script.js](/script.js) and [styles.css](/styles.css)are in the same local directory. With the file open in your browser, you shouldsee a `New TODO` button, which `alert`s when clicked. Your goal will be to getthis button to create new TODOs.
Inside [styles.css](/styles.css), youll find some pre-written CSS for yourconvenience. You shouldnt need to edit this file at all, but feel free to ifdesired.
[script.js](/script.js) is where most of your work will be done. There is somestarter code for you in the file. The `classNames` variable can be used to linkany elements you create in js with the associated CSS class names. The next 3lines of code are the HTML elements that youll need to update when creating newTODOs. Lastly, youll see the `addTodo()` function. This gets executed whencreating a new TODO. You should replace the `alert()` call with logic to createnew TODOs.

![[Solved] CS50 Project 0](https://assignmentchef.com/wp-content/uploads/2022/08/downloadzip.jpg)

![[Solved] CS50 Project 1- Pomodoro Timer](https://assignmentchef.com/wp-content/uploads/2022/08/downloadzip-1200x1200.jpg)
Reviews
There are no reviews yet.