I have an Array var cars = [2,3,..] which holds a few integers. I\'ve added a few values to the array, but I now need to send this array to a page via jQuery\'s
var cars = [2,3,..]
If you have only 1 object like the one you asked, the following will work.
var x = [{'a':'b'}]; var b= JSON.stringify(x); var c = b.substring(1,b.length-1); JSON.parse(c);