the _.get() function allows you to use a string to deep get value from Json object. However it gets value and not reference, is an equivalent command (or diff way) to get reference to Json object
example:
var object = { 'a': [{ 'b': { 'c': 3 } }] };
const r = _.get(object, 'a[0].b');
r <<< is new object not a ref.
thanks,
Sean