JuanDBta / ToDoList-Project

My To Do List project is a task management application that allows you to create, delete, and edit tasks. It utilizes local storage to store the tasks. The project features a "Clear all completed" button that removes all checked tasks and displays the remaining unfinished tasks. It was implemented using HTML, CSS and JS, with webpack for bundle.
https://juandbta.github.io/ToDoList-Project/
MIT License
4 stars 0 forks source link

JavaScript best practices #9

Open JuanDBta opened 1 year ago

JuanDBta commented 1 year ago

Reviewing my code, having in mind Best JS practices.

JuanDBta commented 1 year ago

Look at this section in your index.js. It is better if you create a module where you can generate HTML elements. Remember that is better for your programm have separate tasks in each module in order to make your code loading lighter. https://github.com/JuanDBta/ToDoList-Project/blob/e1f31798426be06b35c8eb0f1b52008929368d37/src/index.js#L7-L19