Skip to content

Instantly share code, notes, and snippets.

@benomatis
Created February 27, 2016 21:33
Show Gist options
  • Save benomatis/186c56ab8f82776de737 to your computer and use it in GitHub Desktop.
Save benomatis/186c56ab8f82776de737 to your computer and use it in GitHub Desktop.
List key => value pairs of localStorage (JavaScript)
for (var i = 0; i < localStorage.length; i++) {
console.log(Object.keys(localStorage)[i] + ' => ' + localStorage.getItem(localStorage.key(i)));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment