haveSameContents
Checks if two arrays contain the same elements regardless of order.
- Use a
for...of
loop over aSet
created from the values of both arrays. - Use
Array.prototype.filter()
to compare the amount of occurrences of each distinct value in both arrays. - Return
false
if the counts do not match for any element,true
otherwise.