res.clearCookie(name [, options])
Clears the cookie specified by name. For details about the options object, see res.cookie().
res.cookie('name', 'tobi', { path: '/admin' });
res.clearCookie('name', { path: '/admin' });
res.clearCookie(name [, options])
Clears the cookie specified by name. For details about the options object, see res.cookie().
res.cookie('name', 'tobi', { path: '/admin' });
res.clearCookie('name', { path: '/admin' });
Please login to continue.