js save local storage
//Set item localStorage.setItem('myCat', 'Tom'); //Get item var cat = localStorage.getItem("myCat"); //Remove item localStorage.removeItem("lastname"); //Remove all items localStorage.clear();
js save local storage
//Set item localStorage.setItem('myCat', 'Tom'); //Get item var cat = localStorage.getItem("myCat"); //Remove item localStorage.removeItem("lastname"); //Remove all items localStorage.clear();
save object in localstorage shows [object Object]
Looking at the Apple, Mozilla and Mozilla again documentation, the functionality seems to be limited to handle only string key/value pairs. A workaround can be to stringify your object before storing it, and later parse it when you retrieve it: var testObject = { 'one': 1, 'two': 2, 'three': 3 }; // Put the object into storage localStorage.setItem('testObject', JSON.stringify(testObject)); // Retrieve the object from storage var retrievedObject = localStorage.getItem('testObject'); console.log('retrievedObject: ', JSON.parse(retrievedObject));
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us