Returns whether the given array equals any of the given comparisons
Optional
the array to check
the elements to compare
whether the given array equals any of the given comparisons
David Hsing
equalsAny([], [['foo', 'bar']]); // falseequalsAny(['foo', 'bar'], [['foo', 'bar'], ['bar', 'foo']]); // true Copy
equalsAny([], [['foo', 'bar']]); // falseequalsAny(['foo', 'bar'], [['foo', 'bar'], ['bar', 'foo']]); // true
Returns whether the given array equals any of the given comparisons