DEV Community

Discussion on: Need Help 🙏 unable to delete cookie in Express

Collapse
 
shriekdj profile image
Shrikant Dhayje • Edited

try changing this one line

res.clearCookie("jwt");
Enter fullscreen mode Exit fullscreen mode

to two line

res.cookie("jwt");
res.clearCookie("jwt");
Enter fullscreen mode Exit fullscreen mode