You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a vanilla Javascript app that stores the user's list of tasks. The user can edit each task, remove a task and finally save the list. There is a search feature to fetch the list whenever it needs to be viewed.
I ensured that the name given to the each list of tasks while saving is unique; no duplicate names are allowed.
The names are also case sensitive ('myTask' !== 'MyTask') to maintain the idea above.
About
This is a vanilla Javascript app that stores the user's list of tasks. The user can edit each task, remove a task and finally save the list. There is a search feature to fetch the list whenever it needs to be viewed.