convert object into json object code example
Example 1: js create json from object
JSON.stringify(the_data);
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]