Answers for "how to access local storage"

5

javascript clear localstorage

window.localStorage.clear(); //clear all localstorage
window.localStorage.removeItem("my_item_key"); //remove one item
Posted by: Guest on July-31-2019
0

how to get variable in local storage in javascript

localStorage.getItem('id');
Posted by: Guest on February-28-2020
0

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();
Posted by: Guest on September-05-2020

Code answers related to "how to access local storage"

Code answers related to "Javascript"

Browse Popular Code Answers by Language