Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

You can use a loop to iterate through each object in the array and then print each object using JSON.stringify() method. Here's an example in JavaScript:

const jsonArray = [
  {name: 'John', age: 30},
  {name: 'Mary', age: 25},
  {name: 'Sam', age: 40}
];

for(let i=0; i<jsonArray.length; i++) {
  console.log(JSON.stringify(jsonArray[i]));
}

This will print all the JSON objects in the array without leaving out the initial objects.