# onlyTruthy

Purges the provided array of falsy values.

onlyTruthy([1, 2, 3, false, undefined, 4]); // [1, 2, 3, 4]