I have created an array of objects that needs to be stored and kept for another page.
The array of objects is similar to this:
var cheese_array = [
Update JSON with ,(Comma) in
name: "Blue Stilton", age: "13", smelly: true
var cheese_array = [ { name: "Chedder", age: "34", smelly: true }, { name: "Brie", age: "4", smelly: false }, { name: "Blue Stilton", age: "13", smelly: true } ]; var details = JSON.stringify(cheese_array); alert(details);