Delete a cookie by name.
Usage:
const ret = removeCookie('test');console.log(ret); Copy
const ret = removeCookie('test');console.log(ret);
Output:
true Copy
true
The name of the cookie to delete.
true if the cookie was deleted successfully, false otherwise.
false
Delete a cookie by name.
Usage:
Output: