JSFiddle - React, Tailwind, and code Playground
lodash 3 playground
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.10.1/lodash.js"></script>
JavaScript
var array = [
{ id:1, foo:4, title:'a' },
{ id:2, foo:5, title:'b' }
];
var result = _.filter(array, 'id', 2);
console.clear();
console.log(JSON.stringify(result));