I have cookie info stored in JSON format as follows:
var preferredAnimal = {
"dog" : "true",
"cat" : "false",
"bird" : "true"
};
How would i just extract the info for one item? For example, i just want to check cookie, and do something if bird returns true.
Checking the cookie in devtools, the Name is preferredAnimal, and the value is {"dog":true,"cat":false,"bird":true}, so trying to identify the value gives me everything.
Any help appreciated