How do I set multiple values in cookies?
How do I set multiple values in cookies? You have two solutions: Use a cookie for each key-value you want to store: document. cookie = “myCookie=myValue”; document. cookie = “myOtherCookie=myOtherValue”; Store a single cookie with a custom serialization of your complex data, for example JSON: document. cookie = “myCookie=” + JSON. Can a cookie have […]