Removes all falsy values (false, null, 0, "", undefined, and NaN) from an array.
The array to compact.
A new array with all falsy values removed.
compact([0, 1, false, 2, '', 3]) // [1, 2, 3] Copy
compact([0, 1, false, 2, '', 3]) // [1, 2, 3]
Removes all falsy values (false, null, 0, "", undefined, and NaN) from an array.