Skip to content

Instantly share code, notes, and snippets.

@jmmastey
Created November 21, 2013 00:53
Show Gist options
  • Save jmmastey/7574121 to your computer and use it in GitHub Desktop.
Save jmmastey/7574121 to your computer and use it in GitHub Desktop.
for (var i=0; i<arr1.length && i<arr2.length; i++) {
if (arr1[i] != arr2[i]) {
return false;
}
return true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment