lodash get object by array code example
Example 1: lodash find object in array
var users = [
{ 'user': 'barney', 'age': 36, 'active': true },
{ 'user': 'fred', 'age': 40, 'active': false },
{ 'user': 'pebbles', 'age': 1, 'active': true }
];
_.find(users, function(o) { return o.age < 40; });
Example 2: how to collect keys using lodash javascript
import * as _ from 'lodash';
const objectMap = {'key1': 'value1', 'key2': 'value2'};
const allKeys = _.keys(objectMap);
Example 3: lodash map
const _quote_filter = _.map(quote_state, (val, key) => { if (val) { return key }})console.log(_quote_filter)