Skip to content

Instantly share code, notes, and snippets.

@stevengonsalvez
Last active August 26, 2025 18:03
Show Gist options
  • Select an option

  • Save stevengonsalvez/ce8f4d0e59b665c99e0bf7816c66f6a6 to your computer and use it in GitHub Desktop.

Select an option

Save stevengonsalvez/ce8f4d0e59b665c99e0bf7816c66f6a6 to your computer and use it in GitHub Desktop.
localStorage.clear();
sessionStorage.clear();
document.cookie.split(";").forEach(function(c) {
document.cookie = c.replace(/^ +/, "").replace(/=.*/, "=;expires=" + new Date().toUTCString() + ";path=/");
});
console.log('Cleared all storage');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment