Join the AI Workshop and learn to build real-world apps with AI. A hands-on, practical program to level up your skills.
You can check whether a cookie exists like this:
if (
document.cookie.split(';').filter(item => {
return item.includes('name=')
}).length
) {
// cookie exists
}