Lodash object get() documentation: https://lodash.com/docs/4.17.15#get
Example:
const object = { 'a': [{ 'b': { 'c': 3 } }] };
_.get(object, 'a[0].b.c');
// => 3
_.get(object, ['a', '0', 'b', 'c']);
// => 3
_.get(object, 'a.b.c', 'default');
// => 'default'
Examples of implementation:
Lodash object get() documentation: https://lodash.com/docs/4.17.15#get
Example:
Examples of implementation: