Skip to content

Instantly share code, notes, and snippets.

@scrubmx
Created April 9, 2014 20:01
Show Gist options
  • Select an option

  • Save scrubmx/10308629 to your computer and use it in GitHub Desktop.

Select an option

Save scrubmx/10308629 to your computer and use it in GitHub Desktop.
Remove an element from an array
Array.prototype.remove = function (itemToRemove)
{
return this.filter(function (element) {
return element !== itemToRemove;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment