Join the AI Workshop and learn to build real-world apps with AI. A hands-on, practical program to level up your skills.
The simplest way to set a cookie is:
document.cookie = 'name=Flavio'
This adds a new cookie to the existing ones (it does not overwrite existing cookies).
The cookie value should be URL-encoded with encodeURIComponent(), so it does not contain any whitespace, comma, or semicolon, which are invalid in cookie values.