compact [压缩]
从数组中移除假值。
使用 Array.prototype.filter()
来过滤掉假值 (false、null、0、""、undefined 和 NaN)
。
typescript
const compact = (arr: any[]) => arr.filter(Boolean);
typescript
compact([0, 1, false, 2, "", 3, "a", Number("e") * 23, NaN, "s", 34]); // [ 1, 2, 3, 'a', 's', 34 ]