json.stringify js object code example
Example 1: turn object into string javascript
var obj = {a: "a", b: "b" /*...*/};
var string = JSON.stringify(obj);
// OUTPUT:
// "{'a':'a', 'b':'b'}"
Example 2: js create json from object
JSON.stringify(the_data);