We're a place where coders share, stay up-to-date and grow their careers.
Thank you, this was very handy. I remixed it a little:
const convertArrayToObject = (array) => { return _.reduce(array, (accumulator, currentValue) => { accumulator = Object.assign(accumulator, currentValue); return accumulator; }, {}); };
I should have mentioned that I've used the lodash reduce method here instead of the javascript reduce
lodash
javascript
Thank you, this was very handy.
I remixed it a little:
I should have mentioned that I've used the
lodash
reduce method here instead of thejavascript
reduce