Todo app from js

I created this todo list using javascript that stores data into the local storage. Suggestions for improvement would be highly appreciated :slight_smile:
Here is the LINK

1 Like

Looks great. I have few suggestions for you.

  1. 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
  2. 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 :slight_smile:

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