Join the AI Workshop and learn to build real-world apps with AI. A hands-on, practical program to level up your skills.
To update the value of a cookie, assign a new value to the same cookie name:
document.cookie = 'name=Flavio2'
To update the expiration date, assign a new value that includes a new expires or max-age value:
document.cookie = 'name=Flavio; max-age=31536000' // expires in 1 year
Include any other parameters you used when first setting the cookie, such as path or domain.