Skip to content

ranjeet7287/Todo-List

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Todo-List

A todo list app

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}
  • Functions (in code)
    • addTodo
    • deleteTodo
    • checkTodo
    • renderTodosList
    • showNotification