Skip to content

Instantly share code, notes, and snippets.

@yoshuawuyts
Created June 23, 2014 12:49
Show Gist options
  • Save yoshuawuyts/126a0408dd8fdbdbe367 to your computer and use it in GitHub Desktop.
Save yoshuawuyts/126a0408dd8fdbdbe367 to your computer and use it in GitHub Desktop.
function arraysIdentical(a, b) {
var i = a.length;
if (i !== b.length) {
return false;
}
while (i--) {
if (a[i] !== b[i]) {
return false;
}
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment