hey I want to calculate the sum of one property from array of object using lodash
suppose the array of object looks like this ...
salary":[{
"bills":[{"electricity":300,"milk":500},
{"electricity":240,"milk":200},
{"electricity":800,"milk":900}]
}]
I want to calculate the sum of 'milk' from that object using lodash.