How to use local storage for JavaScript

How to use local storage for JavaScript

Local Storage is used to store data locally within user's browser.

You can store large amount of data locally and it is more secure.

Question is when you will use local storage mechanism in your application?

Ok, suppose you are going to create a to-do application in JavaScript and pages are going reload then in that case all to-do's are gone.

Local Storage resolve this issue to save your bits of data to user's browser so that whenever you reload pages then data will still be there.

Local Storage is known as Web Storage and part of the HTML 5 specification.

There is no expiration date with data that is stored locally by using local storage.

It store data in key/value pairs.

Before HTML 5, you were using Cookie with limitations.

Cookie is basically a text file that allow data storage up to 4 KB.

You can set data in key and access data by key using local storage. Local Storage is similar to Session Storage.

Some of browser do not support local storage so first you have to check browser support for Local Storage.

  1. if (typeof(Storage) !== "undefined") {
  2. // Write code for local storage.
  3. } else {
  4. // Sorry, your browser does not support Web Storage..
  5. }
Storing Objects in HTML5 localStorage
  1. var demoObject = { 'name': 'xyz', 'email': 'xyz@gmail.com'};
  2. // save object into local storage with key 'demoObject'
  3. localStorage.setItem('demoObject', JSON.stringify(demoObject));
Retrieve the object from storage
  1. var getDemoObjectData = localStorage.getItem('demoObject');
Remove the object from storage
  1. localStorage.removeItem("demoObject");
Clear all keys out of the storage
  1. localStorage.clear();

Phone: (+91) 8800417876
Noida, 201301
Attention Required! | Cloudflare

Sorry, you have been blocked

You are unable to access ressim.net

Why have I been blocked?

This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

What can I do to resolve this?

You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.