carloshs1994 / To-Do-List

This is a repo to build a simple to-do list using JavaScript, HTML, and CSS. The elements are created dynamically.
7 stars 0 forks source link

Milestone 2: Add, update and delete features #2

Closed carloshs1994 closed 2 years ago

carloshs1994 commented 2 years ago

in this Milestone:

✅ Implement a function for adding a new task (add a new element to the array). ✅ Implement a function for deleting a task (remove an element from the array). ✅ Implement a function for editing task descriptions. ✅ By default new tasks have the property completed set to false and the property index set to the value of the new array length ✅ Deleting a task update all remaining items' indexes, so they represent the current list order and are unique. ✅ All changes to the To-Do List are saved in local storage.