create object json javascript code example
Example 1: js create json from object
JSON.stringify(the_data);
Example 2: create a json object in javascript
var employee = {
"firstName": firstName,
"lastName": lastName
}
Example 3: create a javascript json object
const student = {
name: "bob",
age: 7,
grade: 6
}