I did research creating a string out of the array and then sending it as a cookie, but this array is very complicated as it contains objects with there own properties.
Example of one of the objects in the array:
var other0 = {
name: "Where the Seas Meet",
preview: "Lorem ipsum dolor sit amet, consectetur adipiscing",
url: "other/where-the-seas-meet.html",
keywords: ["sea", "ocean", "temperature", "salinity", "density",
"mediterranean", "atlantic", "water", "waves", "fresh", "salty", "barrier",
"partition", "estuary", "division", "seperation"]
};
I'm redirecting my page, and then I would like to access the array and write it's objects properties to the html document, but I don't how to store the array with just JS?