Design comparison
Solution retrospective
I have found many difficulties in this project like an array or for each loop working, selecting a number value in times and sending the value of this to a new js file. My thanking page is unsure. How could I improve my for each (array) logic?
Community feedback
- @JlordS32Posted about 1 year ago
You should try looking up
localStorage
. It may solve your problem.0@JlordS32Posted about 1 year ago@ABidhasan134
In order to use
localStorage
.You can simply initialise one by simply typing this `localStorage.setItem('storageName', value);
that will create a localStorage inside the browser and you simply update the value by using the same code above.
To get the value, type
const yourVariable = localStorage.getItem('storageName')
I'm not really the best at teaching but I hope that made sense.
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