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 " ".
/* {
* name: "John Smith",
* age: 30,
* ...
*/
let pretty = JSON.stringify(data, null, 4);
var obj = ...;
var json = JSON.stringify(obj);
var obj2 = JSON.parse(json);
// Person Object
const obj = {name: "John", age: 30, city: "New York"};
// Stringify the object into JSON string
const myJsonString = JSON.stringify(obj);
// Print to output
console.log(myJsonString);
// Output in string: {"name":"John","age":30,"city":"New York"}
json.stringify() is useful for, say, converting an object to a string format
which enbales it to be sent as data to a server or for use in other
languages
json.parse() turns a string object back into a regular object
var Num=[1,2,3,4,5,6]
console.log("The Numbers Are "+JSON.stringify(Num))
//output= The Number Are [1,2,3,4,5,6]