Skip to content

Instantly share code, notes, and snippets.

@jbail
Created December 23, 2012 18:08
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save jbail/4364947 to your computer and use it in GitHub Desktop.
Save jbail/4364947 to your computer and use it in GitHub Desktop.
Local storage with JSON parse and stringify
var animal = {
name: 'Karl',
type: 'cat',
color: 'black',
age: 7
};
//convert JSON animal into a string
var dehydratedAnimal = JSON.stringify(animal);
//save it with local storage
window.localStorage.setItem('animal', dehydratedAnimal);
//get 'animal' and rehydrate it (convert it back JSON)
var rehydratedAnimal = JSON.parse(window.localStorage.getItem('animal'));
@proncaglia
Copy link

proncaglia commented Aug 10, 2021

You can access it using ".", for example:

alert(rehydratedAnimal.name);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment