Skip to content

Instantly share code, notes, and snippets.

@benhatsor
Last active February 10, 2024 15:49
Show Gist options
  • Save benhatsor/3f0723141e8715848ce59cdd81e776ef to your computer and use it in GitHub Desktop.
Save benhatsor/3f0723141e8715848ce59cdd81e776ef to your computer and use it in GitHub Desktop.
Compare two arrays (minified)
Array.prototype.equals=function(a){for(var b=0;b<this.length;b++)if(this[b]!=a[b])return!1;return!0};
[0,1].equals([0,1]) // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment