get data with dot notation
npm install underscore.get##Underscore.get
Install from npm
npm install underscore.get
Require individual functions
``javascript
const {get} = require("underscore.get");
get(obj, 'a[0].b', defaultValue);
`
Or use Mixin
`javascript``
const getMixin = require("underscore.get");
_.mixin(getMixin);
_.get(obj, 'a[0].b', defaultValue);
##Don't forget to star the github repository!