Array.Filter() : One more trick ..
I stumbled on new thing while I was reviewing one of my colleagues PR, when I saw him trying to filter an array, simply he wanted to get rid of all falsy values.
/* Example: array which has values that considered falsy in JS */
var simpleArray…