stringify = turn a JSON (an Object) into a stringparse = The opposite of stringify, turns a string into an Object.
Example:
myresponse = [{"status": 1, "count": 2, }];
var stringy = JSON.stringify(myresponse);
var parsed = JSON.parse(stringy);