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
David Hsing
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