What is local storage? How to use it to store data client-side?
What is localStorage?
localStorage is a way to store data on the client-side, in the browser. This data is stored in key/value pairs and is available to JavaScript code running on that page.
localStorage is persistent, meaning that the data will rema...
blog.thecode.xyz3 min read