Skip to content

Instantly share code, notes, and snippets.

@morellodev
Created April 26, 2019 10:03
Show Gist options
  • Save morellodev/a63d27d8e8a353b19f44bff9e7ba7b51 to your computer and use it in GitHub Desktop.
Save morellodev/a63d27d8e8a353b19f44bff9e7ba7b51 to your computer and use it in GitHub Desktop.
LocalStorage - Retrieve Serialized Data
const serializedData = localStorage.getItem('data');
const myData = JSON.parse(serializedData);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment