Skip to content

Instantly share code, notes, and snippets.

@codewithtyler
Created July 2, 2016 22:30
Show Gist options
  • Save codewithtyler/ab671604e25c34d3f99a5bc93c71be3d to your computer and use it in GitHub Desktop.
Save codewithtyler/ab671604e25c34d3f99a5bc93c71be3d to your computer and use it in GitHub Desktop.
JavaScript Extension Methods
Array.prototype.contains = function( value ) {
return this.indexOf( value ) > -1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment