Languages
[Edit]
EN

JavaScript - convert array to object

3 points
Created by:
Paris-Bateman
504

In this article, we would like to show you how to convert array to object working with JavaScript.

Quick solution:

Hint: it works since ES6.

or:

Hint: it works since ES8.

 

Reusable function examples

Edit

In this section, you can find different ways how to create reusable function that converts array to object.

1. Using Object.assign() method (ES6 solution)

Edit

The solution extends empty object with array items by using Object.assign(), finally giving array converted to object.

 

2. Using Object.keys() method (ES5 solution)

Edit

The solution iterates over array items adding them into new object.

 

2. Using spread operator (ES8 solution)

Edit

The solution creates new object by using spread operatior on the array.

 

References

Edit
  1. Object.assign() - JavaScript | MDN
  2. Spread syntax (...) - JavaScript | MDN
1
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