Skip to content

Instantly share code, notes, and snippets.

@tcelestino
Created March 13, 2016 16:19
Show Gist options
  • Save tcelestino/9aa7c94b0fb96efae576 to your computer and use it in GitHub Desktop.
Save tcelestino/9aa7c94b0fb96efae576 to your computer and use it in GitHub Desktop.
get all data localStorage
var i = 0,
oJson = {},
sKey;
for (; sKey = window.localStorage.key(i); i++) {
oJson[sKey] = window.localStorage.getItem(sKey);
}
console.log(oJson);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment