create json inside json code example
Example 1: json example
{ "name":"John", "age":30, "car":null }
Example 2: js create json from object
JSON.stringify(the_data);
Example 3: create a javascript json object
const student = {
name: "bob",
age: 7,
grade: 6
}