Skip to content

Instantly share code, notes, and snippets.

@avand
Created July 29, 2016 00:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save avand/fa80ff8caf5add682e7b2cdbbb69bfa9 to your computer and use it in GitHub Desktop.
Save avand/fa80ff8caf5add682e7b2cdbbb69bfa9 to your computer and use it in GitHub Desktop.
// Write a value, "avand", to a given key, "username"...
localStorage.setItem("username", "avand");
// Read the value of a given key...
var username = localStorage.getItem("username");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment