Answers for "json.stringify #"

17

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
4

json.objectify

var obj = ...;
var json = JSON.stringify(obj);  
var obj2 = JSON.parse(json);
Posted by: Guest on November-22-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language