const arr = [ {}, { hello: null }, { hello: false }, { hello: 0 }, { hello: 'world' } ]; _.filter(arr, 'hello'); // [{ hello: 'world' }]