Javascript » Data » Todo List
👉 User Story:
As a developer
Implement a `data driven` todo list app that fulfill
the following user stories.
As a user
I would like to add custom items into a list
As a user
I would like to click on an item to remove it
The architecture of this solution should always follow the "data -> DOM" rendering pattern.
You can try things out directly on this pen:
https://codepen.io/marcopeg/pen/JjjZeEV
✅ Proposed Solution:
Don't run this unless you gave a very good effort to solve it yourself!
🤓 Resources:
- [MDN: forEach](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/
- MDN: Array.splice()
- MDN: Array.push()
- MDN: Create Element
- MDN: Append Child
- MDN: querySelector