JavaScript LocalStorage Methods - setItem(), getItem(), removeItem() clear() and key() Example


The localStorage object is a type of web storage that allows Javascript websites and apps to store and access data right in the browser with no expiration date. This means the data stored in the browser will persist even after the browser window has been closed. The localStorage property object is read-only.

Tip - Coding in Browser

Let's demonstrate how to store and view data stored in the web browser using the localStorage property. Let's code directly in a browser.
  1. Enter some domain in the web browser, for example - "https://www.javaguides.net/".
  2. Inspect web page and go to console.
  3. Type below JavaScript code snippet and hit enter button.
localStorage.setItem("firstName", "Ramesh");
  1. Go to Application tab under Storage menu you can find LocalStorage and domain "https://www.javaguides.net/".
  2. Click on domain "https://www.javaguides.net/" and filter for "key1".
The below gif file summarize the above steps:

JavaScript LocalStorage Methods

To use LocalStorage in your web applications, there are 5 methods to choose from:
  1. setItem(): Add key and value to LocalStorage
  2. getItem(): Retrieve a value by the key from LocalStorage
  3. removeItem(): Remove an item by key from LocalStorage
  4. clear(): Clear all LocalStorage
  5. key(): Passed a number to retrieve nth key of a LocalStorage

Syntax

window.localStorage
The syntax for SAVING data to localStorage:
localStorage.setItem("key", "value");
The syntax for READING data from localStorage:
var lastname = localStorage.getItem("key");
The syntax for REMOVING data from localStorage:
localStorage.removeItem("key");
The syntax for CLEAR all data:
localStorage.clear();
Syntax for Key() Method:
var KeyName = localStorage.key(index);
Let's demonstrate each method with an example.

localStorage.setItem() Method

This method just as the name implies allows you to store values in the localStorage object.
It takes two parameters, a key and a value. The key can be referenced later to fetch the value attached to it.
localStorage.setItem("firstName", "Ramesh");
Where "firstName" is the key and "Ramesh" is the value. Also, note that localStorage can only store strings.
To store arrays or objects you would have to convert them to strings.
To do this we use the JSON.stringify() method before passing to setItem() .
var user = {
 firstName : "Ramesh",
 lastName : "Fadatare"
}
localStorage.setItem("id", JSON.stringify(user));

localStorage.getItem() Method

The getItem() method allows you to access the data stored in the browser’s localStorage object.
It accepts only one parameter which is the key and returns the value as a string.
To retrieve the user object from the key stored above:
localStorage.getItem('id');
This returns a string with value as;
"{"firstName":"Ramesh","lastName":"Fadatare"}"
To use this value, you would have to convert it back to an object using JSON.parse() method.
JSON.parse(localStorage.getItem('id'));

localStorage.removeItem() Method

Let's use the removeItem() method to remove the item from the key. Let's remove the user object previously stored using setItem() method:
localStorage.removeItem('id');

localStorage.clear() Method

This method, when invoked clears the entire storage of all records for that domain. It does not receive any parameters.
localStorage.clear();

localStorage.key() Method

The key() method comes in handy in situations where you need to loop through keys and allows you pass a number or index to local storage to retrieve the name of the key.
var KeyName = localStorage.key(index);
Check out JavaScript Posts, examples, and tutorials at JavaScript Tutorials, Articles, Examples.

Comments