Languages

JavaScript - transpose object into key/value array

0 points
Asked by:
elmer
646

How can I transpose given object into an array of key/value pairs (objects)?

My object:

Expected result:

1 answer
0 points
Answered by:
Admin Dirask Community
4380

You can combine Object.entries() with map() method to get the intended result.

What you want to do is convert object into array of objects, so the solution for your problem would be:

However, the topic says "key/value array", so here's a second solution:

 

See also

  1. JavaScript - convert object to array of key-value pairs

References

  1. Object.entries() - JavaScript | MDN
  2. Array.prototype.map() - JavaScript | MDN
0 commentsAdd comment
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join