How to use local storage for JavaScript – onlinecode

How to use local storage for JavaScript – onlinecode

In this post we will give you information about How to use local storage for JavaScript – onlinecode. Hear we will give you detail about How to use local storage for JavaScript – onlinecodeAnd how to use it also give you demo for it if it is necessary.

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. }
if (typeof(Storage) !== "undefined") {
    // Write code for local storage.
} else {
    // Sorry, your browser does not support Web Storage..
}


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));
var demoObject = { 'name': 'xyz', 'email': 'xyz@gmail.com'};

// save object into local storage with key 'demoObject'
localStorage.setItem('demoObject', JSON.stringify(demoObject));



Retrieve the object from storage

  1. var getDemoObjectData = localStorage.getItem('demoObject');
var getDemoObjectData = localStorage.getItem('demoObject');



Remove the object from storage

  1. localStorage.removeItem("demoObject");
localStorage.removeItem("demoObject");


Clear all keys out of the storage

  1. localStorage.clear();
localStorage.clear();

It does not affect website performance while storing large amount of data locally.

Hope this code and post will helped you for implement How to use local storage for JavaScript – onlinecode. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs

For More Info See :: laravel And github

Leave a Comment

Your email address will not be published. Required fields are marked *

6  +  2  =  

We're accepting well-written guest posts and this is a great opportunity to collaborate : Contact US