Skip to content

Instantly share code, notes, and snippets.

@ain
Last active September 25, 2020 07:17
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save ain/8645033 to your computer and use it in GitHub Desktop.
Save ain/8645033 to your computer and use it in GitHub Desktop.
JavaScript compare() method for Array
Array.prototype.compare = function(array) {
if (!array) {
return false;
}
if (this.length !== array.length) {
return false;
}
for (var i = 0, l = this.length; i < l; i++) {
if (this[i] instanceof Array && array[i] instanceof Array) {
if (!this[i].compare(array[i])) {
return false;
}
}
else if (this[i] !== array[i]) {
return false;
}
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment