Skip to content

Instantly share code, notes, and snippets.

@FelipeJz
Created August 5, 2016 02:05
Show Gist options
  • Save FelipeJz/41e603678044eeb2a0f4cb53c51e9d8b to your computer and use it in GitHub Desktop.
Save FelipeJz/41e603678044eeb2a0f4cb53c51e9d8b to your computer and use it in GitHub Desktop.
Array.prototype.remove = function(value) {
var idx = this.indexOf(value);
if (idx != -1) {
return this.splice(idx, 1);
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment