json to string nodejs code example
Example 1: JSON.stringify pretty
var str = JSON.stringify(obj, null, 2);
Example 2: node string to json
const json = '{"result":true, "count":42}';
const obj = JSON.parse(json);
Example 3: Javascript object to JSON string
var person={"first_name":"Tony","last_name":"Hawk","age":31};
var personJSONString=JSON.stringify(person);
Example 4: node json stringify
let data = {
name: "John Smith",
age: 30,
hobbies: ["Programming", "Video Games"]
};
let miny = JSON.stringify(data);
let pretty = JSON.stringify(data, null, 4);