Answers for "js compare equality of arrays"

6

javascript compare arrays

Array.prototype.equals = function(arr2) {
  return (
    this.length === arr2.length &&
    this.every((value, index) => value === arr2[index])
  );
};

[1, 2, 3].equals([1, 2, 3]);	// true
[1, 2, 3].equals([3, 6, 4, 2]);	// false
Posted by: Guest on October-07-2020

Code answers related to "js compare equality of arrays"

Code answers related to "Javascript"

Browse Popular Code Answers by Language