This mini project creates a dynamic todo list where users can add and remove tasks.
Todo apps are commonly used to test frontend logic skills.
This project combines input handling, DOM manipulation, and events.
Logic of this project:
- Read task input
- Add task to list
- Clear input field
- Remove task when clicked
This creates task input and list container.
Clicking on a task removes it from the list.
Learning Points:
- append() method
- Event delegation
- Dynamic elements
- Real app logic