Ask Your Question
4

What is the method to print all the JSON objects in a JSON array, without leaving out the initial objects?

asked 2023-05-31 00:17:06 +0000

lalupa gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2023-05-31 00:30:02 +0000

bukephalos gravatar image

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.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-05-31 00:17:06 +0000

Seen: 7 times

Last updated: May 31 '23