Answers for "example localstorage with html5"

27

how to Store Objects in HTML5 localStorage

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));
Posted by: Guest on March-07-2020
2

how to code localstorages in html

function hello() {
  localStorage.storedList = document.getElementById("hi").value;
}
Posted by: Guest on August-07-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language