Skip to content

Instantly share code, notes, and snippets.

@cgkio
Created November 15, 2013 02:17
Show Gist options
  • Save cgkio/7478075 to your computer and use it in GitHub Desktop.
Save cgkio/7478075 to your computer and use it in GitHub Desktop.
Setting, getting and removing local storage
localStorage.setItem('favoriteflavor','vanilla');
var taste = localStorage.getItem('favoriteflavor');
localStorage.removeItem('favoriteflavor');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment