Returns the array that removes the given elements
Optional
the arrays to inspect
the elements to remove
the array that removes the given elements
removeAll(undefined, ['bar']); // undefinedremoveAll(['foo', 'bar'], undefined); // ['foo', 'bar']removeAll(['foo', 'bar'], ['bar']); // ['foo'] Copy
removeAll(undefined, ['bar']); // undefinedremoveAll(['foo', 'bar'], undefined); // ['foo', 'bar']removeAll(['foo', 'bar'], ['bar']); // ['foo']
Returns the array that removes the given elements