Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 1.18 KB

README.md

File metadata and controls

31 lines (26 loc) · 1.18 KB

TODO WebApp task

Check it out! 👉🏼 TODO WebApp by Adarsh Raj Pathak

TODO WebApp using Vanilla JavaScript, CSS, BootStrap, HTML

More about the project

  • About

    This is a simple TODO WebApp built using Vanilla JavaScript, CSS, Bootstrap, and HTML. It allows users to add, delete, and check tasks, as well as view the total number of tasks.

  • Functionalities

    • Adding TODO
    • Deleting TODO
    • Check Task(Tick Mark)
    • Total Items Count
  • Data

    The application uses an array of objects to store the tasks. Each task object has a unique ID, a text description, and a boolean value indicating whether the task has been completed.

    • tasks-> Array of Objects [{},{},...]
    • task-> {serial No, text, boolean(tick)}
  • Functions

    • addItem -addTask -addTasksToDOM
    • deleteItem
    • checkItem
    • showNotification(toast/alert/pop-ups)
    • renderList
    • others
      • linecut