To Do List App
View app
View GitHub repository
This project was made as part of the test-driven development (TDD) part of the Founders & Coders’ skills Bootcamp, and utilised the test methods that we learned.
It’s a to-do app that allows a user to:
- Add tasks to a list
- Check completed tasks off the list
- Delete tasks from the list
- Use the app without a mouse
The user is prompted to enter a to-do item. Using Local Storage, we created a dynamic list item in which the to-do items were pushed, and displayed on the screen. We created separate functions for pushing into the list item and deleting from the list item.