Css flex, sematic html, logic and javascript
Design comparison
Solution retrospective
This was a great challenge, I am glad I was able to complete it. i start learning javascript 2months ago and I am happy that i am making progress. However, i tried storing the user todo list to their web browsers but i couldn't achieve that. i am open to suggestions on how i can do that. thank you
Community feedback
- @alQaisiPosted over 2 years ago
Hi, your work is impressive!
to store data in the browser you need to use something called local storage which takes 2 arguments, the first one is the name or the key for the value you want to store and the second one is the data itself.
Local storage takes only string data so you have to convert your JSON or objects to string using stringify method and then parse it into an object when you want to fetch it.
read more about local storage on the MDN website.
Have a nice day :)
Marked as helpful1@Cyril-ArinzePosted over 2 years ago@alQaisi Thank you. I appreciate your review and suggestions
0
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord