Skip to content

Instantly share code, notes, and snippets.

@wkronemeijer
Created October 17, 2013 16:21
Show Gist options
  • Save wkronemeijer/7027887 to your computer and use it in GitHub Desktop.
Save wkronemeijer/7027887 to your computer and use it in GitHub Desktop.
Array utility
Array.prototype.contains = function(element) {
return this.indexOf(element) !== -1;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment