📅  最后修改于: 2022-03-11 15:02:36.086000             🧑  作者: Mango
const a =[3,,null, false, undefined, 1];
// Remove falsey
a.filter(Boolean);
// Remove specific (undefined)
a.filter(e => e !== undefined);