Skip to content

Instantly share code, notes, and snippets.

@sakshstore
Created September 2, 2022 09:22
Show Gist options
  • Save sakshstore/f9105f64f2dd618749da71592d93ede9 to your computer and use it in GitHub Desktop.
Save sakshstore/f9105f64f2dd618749da71592d93ede9 to your computer and use it in GitHub Desktop.
const clearCookies = () =>
document.cookie
.split(";")
.forEach(
(c) =>
(document.cookie = c
.replace(/^ +/, "")
.replace(/=.*/, "=;expires=Thu, 01 Jan 1970 00:00:00 UTC"))
);
// Usage
clearCookies(); // Clear all cookies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment