Skip to content
Advertisement

Reconstructing an array of arrays and turning it into an array of objects with keys as the first array and values as the rest of the array items

The question itself is probably in need of editing but hear me out pls. I have this:

JavaScript

I need it so that it will look like the one below:

JavaScript

I have done something like this:

JavaScript

To no avail and got something like this:

JavaScript

This is not the desired output. If you can help me out – and our community! – it would be super. Thanks!

Advertisement

Answer

You can use couple of Array functions to achieve this:

  • Array.shift: To pick the first element and remove it from array
  • Array.map: To transform items into object

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement