Returns the array that excludes the elements which includes any of the given exclusions
Optional
the arrays to inspect
the elements array to exclude
the array that excludes the elements which includes any of the given exclusions
removeIncludes(['foo', 'bar'], ['ar']); // ['foo'] Copy
removeIncludes(['foo', 'bar'], ['ar']); // ['foo']
Returns the array that excludes the elements which includes any of the given exclusions