Skip to content

Instantly share code, notes, and snippets.

@sayyedhammadali
Created October 3, 2021 09:39
Show Gist options
  • Save sayyedhammadali/27f5fbf35ac18046e40aed65ecacc715 to your computer and use it in GitHub Desktop.
Save sayyedhammadali/27f5fbf35ac18046e40aed65ecacc715 to your computer and use it in GitHub Desktop.
Clear All Cookies
const clearCookies = document.cookie.split(';').forEach(cookie => document.cookie = cookie.replace(/^ +/, '').replace(/=.*/, `=;expires=${new Date(0).toUTCString()};path=/`));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment