Skip to content

Instantly share code, notes, and snippets.

@frentsel
Last active August 29, 2015 14:27
Show Gist options
  • Save frentsel/c8099bf652513c08c18c to your computer and use it in GitHub Desktop.
Save frentsel/c8099bf652513c08c18c to your computer and use it in GitHub Desktop.
Remove element from array
Array.prototype.remove = function(id){
return this.splice(id, 1);
}
var a = ["a","b","c","d"];
a.remove(2);
console.log(a);
// ["a", "b", "d"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment