// 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"}
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]