JSFiddle - React, Tailwind, and code Playground
by oakley808
HTML
<script src="https://underscorejs.org/underscore-min.js"></script>
JavaScript
var animals = [
{
type: 'duck',
name: 'quack',
},
{
type: 'duck',
name: 'quieck',
},
{
type: 'dog',
name: 'bark',
},
];
var uniqueList = _.uniq(list, function(item, key, a) {
return item.a;
});
console.log('tada'+uniqueList)