Skip to content

Instantly share code, notes, and snippets.

@netsuite
Created April 14, 2014 21:43
Show Gist options
  • Save netsuite/10684777 to your computer and use it in GitHub Desktop.
Save netsuite/10684777 to your computer and use it in GitHub Desktop.
js: are differents array
areDifferents: function (a, b) {
return a.reduce(function(memo, value, index) {
return memo && a[index] === b[index];
}, true);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment