Test Cookie Handling Class
- Press "Set Cookie" to set the cookie to the data structure on the left.
- Press "Parse Cookie..." to retrieve the cookie, parse the data structure, and output it at the right. Both panels should now be identical.
{
str : "string value",
num : 2345,
bool : false,
arr : [
"val1",
"val2",
[
1,
2,
3
],
true
],
obj : {
str : "string value",
arr : [
"val1",
"val2",
[
1,
2,
3,
4,
5,
6,
7,
8
],
true
],
obj : {
}
}
}
[output]