Answers for "js storage object"

28

local storage javascript object

var person = { "name": "billy", "age": 23};

localStorage.setItem('person', JSON.stringify(person)); //stringify object and store
var retrievedPerson = JSON.parse(localStorage.getItem('person')); //retrieve the object
Posted by: Guest on July-22-2019
0

what are object storage methods

Storage Object Properties and Methods
Property/Method	Description
key(n)	Returns the name of the nth key in the storage
length	Returns the number of data items stored in the Storage object
getItem(keyname)	Returns the value of the specified key name
setItem(keyname, value)	Adds that key to the storage, or update that key's value if it already exists
removeItem(keyname)	Removes that key from the storage
clear()	Empty all key out of the storage
Related Pages for Web Storage API
Property	Description
window.localStorage	Allows to save key/value pairs in a web browser. Stores the data with no expiration date
win
Posted by: Guest on November-20-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language