object showing up as string js 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: cosnsole.log without obj object
console.log(JSON.stringify(myObject, null, 4));