_includes/api/en/4x/res-clearCookie.md
Clears the cookie with the specified name by sending a Set-Cookie header that sets its expiration date in the past.
This instructs the client that the cookie has expired and is no longer valid. For more information
about available options, see res.cookie().
res.cookie('name', 'tobi', { path: '/admin' })
res.clearCookie('name', { path: '/admin' })