JSON Array
Arrays in JSON are used to organize the objects which are related ( which can be JSON objects). They are surrounded by a set of square brackets [ ] and the order of elements is important in case of JSON arrays. ( any change would make it different array altogether)
Syntax: [ "SpaceX", "NASA", "ISRO" ]
JSON Objects
A JSON object is used to contain key/value pairs when they are related to one particular item. They are surrounded by a set of curly brackets { } and the order of elements is not important in case of JSON objects.
Example:
{ID: 72, firstname: 'Alex'}
is equal to
{firstname: 'Alex', ID: 72}