I created this todo list using javascript that stores data into the local storage. Suggestions for improvement would be highly appreciated
Here is the LINK
1 Like
Looks great. I have few suggestions for you.
- U cant submit empty input, but if u add space u can, for that instead of checking if input
value is !== ββ do input.value.trim() ! == ββ , thatβs gonna fix that issue - Make it responsive for mobile
Other than that, everything is great. Hope I can help, cheers!
1 Like
Iβm quite impressed. Very slick and elegant. I canβt see any mistakes in the code ('except for the comments already made). Beautifully done!
1 Like
Thank a lot I will work on it right away, "input.value.trim() ! == ββ ", this was very useful
1 Like
Iβm glad you fixed it. Yes that thing is pretty useful especially for todo apps, I had the same issues before, and that also helped me get exactly what I needed. Cheers!
1 Like