Array.prototype.filter() to filter out falsy values (false, null, 0, "", undefined, and NaN).const compact = arr => arr.filter(Boolean);
compact([0, 1, false, 2, '', 3, 'a', 'e' * 23, NaN, 's', 34]); // [ 1, 2, 3, 'a', 's', 34 ]
Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️