Return a copy of the collection with the null values removed
compact(["a", "b", null, "c"]) // => ["a", "b", "c"] Copy
compact(["a", "b", null, "c"]) // => ["a", "b", "c"]
Return a copy of the collection with the null values removed