Cookie values can only be strings. I haven't personally tried storing
non-text values in cookies using _satellite.cookie.set(), but if it's
working for you, then that means Launch is able to stringify the object
before storing it as a JSON value in the cookie._satellite.cookie.get()
would return the cookie's value as-is, i.e. as a string. To convert it
back to its original type, use `JSON.parse()`.E.g.var digitalDataString
= _satellite.cookie.get("digitalData"); var digitalData =
JSON.parse(digi...