How to use local storage in javascript
What is local storage Often you need to maintain a small amount of data for a web application such as a key, current timezone, user logged time etc. but you do not want to bear an overhead of sending this data to server or saving it in a database. Solution is to use local storage of the browser. What is local storage HTML5 introduced the concept of web storage where you can store data inside the browser. This data remains forever till it is not cleared even after the browser window is closed. Data in browser’s local storage is set and retrieved using javascript andRead More →