Skip to content

Instantly share code, notes, and snippets.

@fernandojsg
Last active December 17, 2015 00:19
Show Gist options
  • Save fernandojsg/5520293 to your computer and use it in GitHub Desktop.
Save fernandojsg/5520293 to your computer and use it in GitHub Desktop.
JS: Local Storage
localStorage.setItem("exampleItem", "This is a great example.");
localStorage.getItem("exampleItem");
localStorage.removeItem("exampleItem");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment