Skip to content

Instantly share code, notes, and snippets.

@toruta39
Created February 25, 2013 07:03
Show Gist options
  • Save toruta39/5028228 to your computer and use it in GitHub Desktop.
Save toruta39/5028228 to your computer and use it in GitHub Desktop.
function clearLocalStorage() {
var len = window.localStorage.length;
while (len >= 0) {
window.localStorage.removeItem(window.localStorage.key(len--));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment