Skip to content
Advertisement

Javascript map to Associative Array?

I have an array of objects like so:

JavaScript

How can I create an associative array like so?:

JavaScript

Can this be done with a map function?

Advertisement

Answer

Since you need just one object in the result, you could use array#reduce like this:

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