turn js object to json code example
Example 1: how to convert normal object to json object in javascript
var obj = { name: "John", age: 30, city: "New York" };
var myJSON =
JSON.stringify(obj);
document.getElementById("demo").innerHTML = myJSON;
Example 2: how to use json stringify in javascript
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]