Skip to content

Instantly share code, notes, and snippets.

@puiutucutu
Forked from ain/Array.prototype.compare.js
Created August 18, 2017 14:07
Show Gist options
  • Save puiutucutu/5c48f248dd76a2414db472b2d8dde0f2 to your computer and use it in GitHub Desktop.
Save puiutucutu/5c48f248dd76a2414db472b2d8dde0f2 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