📅  最后修改于: 2022-03-11 15:00:11.407000             🧑  作者: Mango
const arr = [
{},
{ hello: null },
{ hello: false },
{ hello: 0 },
{ hello: 'world' }
];
_.filter(arr, 'hello'); // [{ hello: 'world' }]