Creates a new array excluding all values present in the given array of values.
The source array to filter.
The array of values to exclude from the new array.
A new array excluding all specified values.
pullAll([1, 2, 3, 4], [2, 4]);// → [1, 3]pullAll(["a", "b", "c"], ["a"]);// → ["b", "c"] Copy
pullAll([1, 2, 3, 4], [2, 4]);// → [1, 3]pullAll(["a", "b", "c"], ["a"]);// → ["b", "c"]
1.0.0
Creates a new array excluding all values present in the given array of values.