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