/todoList

Primary LanguageJavaScript

Todo list App

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 :

  1. We can add the tasks or things we want to do later.
  2. We can delete the task later If we do not want to complete that.
  3. We can check if it is done.

General steps to follow when creating a project

  • 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