lodash map return code example
Example 1: lodash merge
import merge from 'lodash/merge'
let object = { 'a': [{ 'b': 2 }, { 'd': 4 }]};
let other = { 'a': [{ 'c': 3 }, { 'e': 5 }]};
merge(object, other); // => { 'a': [{ 'b': 2, 'c': 3 }, { 'd': 4, 'e': 5 }] }
Example 2: lodash map
_.each(markets, (obj, key) => { obj.symbol = key})console.log(markets)//=> { 'BTC/USD': { buys: 0, sells: 3, symbol: 'BTC/USD' }, 'DASH/BTC': { buys: 3, sells: 1, symbol: 'DASH/BTC' }, 'ETH/BTC': { buys: 3, sells: 2, symbol: 'ETH/BTC' } }