I have a cookie
console.log(document.cookie);
Clickme=a-6,a-7,a-8,a-9,a-10,a-17,a-8,
I want to delete this cookie, I have tried following things but they aren't working
document.cookie = "Clickme=; max-age = -1;"
document.cookie = Clickme+"=; expires=Thu, 01 Jan 1970 00:00:01 GMT;"
document.cookie = "Clickme=; expires=Thu, 01 Jan 1970 00:00:00 UTC";