Skip to content

Instantly share code, notes, and snippets.

@catkins
Last active August 29, 2015 14:09
Show Gist options
  • Save catkins/447294d1003fd4423427 to your computer and use it in GitHub Desktop.
Save catkins/447294d1003fd4423427 to your computer and use it in GitHub Desktop.
Local Storage example
if (!window.localStorage) {
alert("Your browser doesn't support local storage!");
}
// method based approach
localStorage.setItem('textSize', 'giant');
localStorage.getItem('textSize'); // => "giant"
// index accessor approach
localStorage['selectedTab'] = 'preferences'
localStorage['selectedTab'] // => "preferences"
// even as an object property
localStorage.selectedTab = "posts"
localStorage.selectedTab // => "posts"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment