Created
February 27, 2016 21:33
-
-
Save benomatis/186c56ab8f82776de737 to your computer and use it in GitHub Desktop.
List key => value pairs of localStorage (JavaScript)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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