local storage methods code example
Example 1: local storage javascript
function createItem() {
localStorage.setItem('nameOfItem', 'value');
}
createItem() // Creates a item named 'nameOfItem' and stores a value of 'value'
function getValue() {
return localStorage.getItem('nameOfItem');
} // Gets the value of 'nameOfItem' and returns it
console.log(getValue()); //'value';
Example 2: local storage javascript
localStorage.setItem('user_name', 'Rohit'); //store a key/value
var retrievedUsername = localStorage.getItem('user_name'); //retrieve the key
Example 3: local storage javascript
let storage = window.localStorage;
// set an item
storage.setItem("highscore", 76);
// get an item
let highscore = storage.getItem("highscore");
// remove an item
storage.removeItem("highscore");
// clear entire storage (NOT recommended as it also removes information about cookies, ad storage an so on)
storage.clear();
Example 4: save to local storage
var cat = localStorage.getItem('myCat');
Example 5: localstorage.getitem()
//The following snippet accesses the current domain's local Storage object
//and adds a data item to it using Storage.setItem().
localStorage.setItem('myCat', 'Tom');
//The syntax for reading the localStorage item is as follows:
const cat = localStorage.getItem('myCat');
//The syntax for removing the localStorage item is as follows:
localStorage.removeItem('myCat');
//The syntax for removing all the localStorage items is as follows:
localStorage.clear();