I would like to remove all falsy values from an array. Falsy values in JavaScript are false, null, 0, \"\", undefined, and NaN.
truthyArray = arr.filter(el => el)
^ that's how you do it