Ask Your Question
4

How can an array containing objects be transformed into a string?

asked 2022-03-22 11:00:00 +0000

qstack gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2022-09-09 01:00:00 +0000

devzero gravatar image

To transform an array containing objects into a string, you can use the JSON.stringify() method in JavaScript. This method converts a JavaScript object into a JSON string representation.

Example:

const arr = [
  { name: "John", age: 30 },
  { name: "Jane", age: 25 },
  { name: "Bob", age: 40 }
];

const str = JSON.stringify(arr);

console.log(typeof str); // string
console.log(str); // '[{"name":"John","age":30},{"name":"Jane","age":25},{"name":"Bob","age":40}]'

In the example above, the array of objects is first passed to the JSON.stringify() method which returns a string containing the JSON representation of the array.

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: 2022-03-22 11:00:00 +0000

Seen: 7 times

Last updated: Sep 09 '22