LoDash: Get an unique array of values from an array of object properties code example
Example 1: lodash unique array of objects
var users = [
{id:1,name:'ted'},
{id:1,name:'ted'},
{id:1,name:'bob'},
{id:3,name:'sara'}
];
var uniqueUsersByID = _.uniqBy(users,'id');
var uniqueUsers = _.uniqWith(users, _.isEqual);
Example 2: lodash unique array
_.uniq([2, 1, 2]);
_.uniq([1, 1, 2], true);
_.uniq([1, 2.5, 1.5, 2], function(n) {
return this.floor(n);
}, Math);
_.uniq([{ 'x': 1 }, { 'x': 2 }, { 'x': 1 }], 'x');