Let's say I have this object (or an array of these objects):
var person = { birth: { place: { country: 'USA' } } };
I thought there was a lodash function where I could go through 'birth.place.country' and return the value USA .
Is there such a function in lodasdh 3.x or am I Iming This?
source share