Skip to content

Instantly share code, notes, and snippets.

@fstorr
Created March 12, 2013 19:41
Show Gist options
  • Save fstorr/5146289 to your computer and use it in GitHub Desktop.
Save fstorr/5146289 to your computer and use it in GitHub Desktop.
loop through localStorage
for(var i = 0, len = localStorage.length; i < len; i++){
var key = localStorage.key(i);
var value = localStorage[key];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment