A todo list App
It is a simple TODO list project using vanilla Javascript, HTML, and CSS. We can perform the following things in this project :
- We can add the tasks or things we want to do later.
- We can delete the task later If we do not want to complete that.
- We can check if it is done.
- Thinking about the UI
- Functionality
- Add a TODO
- Delete a TODO
- Check task
- Total items count
- Data
- tasks - an array
- task -{ done, text, id}
- Function (in code)
- addTodo
- deleteTodo
- checkTodo
- renderTodoList
- showNotification