json object and array code example
Example 1: json example
{ "name":"John", "age":30, "car":null }
Example 2: json arrays
{
"array": [{1,2,3,4,5,6}]
}
Example 3: hwo to access arary in json
console.log(dataJS);
console.log(dataJS[0].eee1);
console.log(dataJS[0].comments[0]);