What is sessionStorage?

Session storage is a popular choice when it comes to storing data on a browser . It enables developers to save and retrieve different values. Unlike local storage, session storage only keeps data for a particular session. The data is cleared once the user closes the browser window.

Read more

What is HTML5 Webstorage?

What is HTML5 Web Storage? It is a simple client side database that allows the users to persist data in the form of key/value pairs . It has a fairly simple API to retrieve/write data into the local storage. It can store up to 10MB of data per domain.

Read more