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