Performs a shallow equality check between two arrays.
Compares each element using Object.is. Returns true if both arrays
have the same length and all corresponding elements are strictly equal,
false otherwise.
Note: This is a shallow comparison. Nested objects or arrays are compared by reference.
Performs a shallow equality check between two arrays. Compares each element using
Object.is. Returns true if both arrays have the same length and all corresponding elements are strictly equal, false otherwise. Note: This is a shallow comparison. Nested objects or arrays are compared by reference.