Answers for "stringify to json nodejs"

3

node string to json

const json = '{"result":true, "count":42}';
const obj = JSON.parse(json);
Posted by: Guest on April-08-2021
22

node json stringify

let data = {
  name: "John Smith",
  age: 30,
  hobbies: ["Programming", "Video Games"]
};

// {name:"John Smith",age:30,hobbies:["Programming","Video Games"]}
let miny = JSON.stringify(data);

// The 4 parameter signifys 4 spaces. You can also use "\t".
/* {
 *     name: "John Smith",
 *     age: 30,
 *     ...
 */
let pretty = JSON.stringify(data, null, 4);
Posted by: Guest on June-20-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language