json array objects code example
Example 1: json arrays
{
"array": [{1,2,3,4,5,6}]
}
Example 2: json object array
const Object = {a:1,
b:'ab'
};
const Array = [1,
'ab',
4
];