// To encode an object (This produces a string) var json_str = JSON.stringify(myobject); // To decode (This produces an object) var obj = JSON.parse(json_str);