Skip to content
Advertisement

Convert object to array of key–value objects like `{ name: “Apple”, value: “0.6” }`

I have an object like this:

JavaScript

Now I want to convert it into an array of key–value objects where each object has the same set of two properties, "name" and "value", which hold the key and value, respectively, of each property of the original object:

JavaScript

Advertisement

Answer

You can use Array#map function on the object keys and create your objects with desired shape.

JavaScript

If you use ES7 or higher you can replace Object#keys with Object#entries. Use also object destructuring in the parameter list to get name and value separately.

JavaScript
Advertisement