Const
Compares two arrays for equality by sorting and comparing elements
True if arrays contain the same elements in any order
const equal = ArrayUtils.arrayEquals([1, 2, 3], [3, 2, 1]); // Returns true
Compares two arrays for equality based on the given options
True if arrays are equal based on the options
Checks if two arrays have any common elements
True if arrays share at least one common element
Collection of array utility functions