Skip to content

Instantly share code, notes, and snippets.

@dented
Created February 24, 2015 14:06
Show Gist options
  • Save dented/be52f32dcfbed1e7d14b to your computer and use it in GitHub Desktop.
Save dented/be52f32dcfbed1e7d14b to your computer and use it in GitHub Desktop.
Remove Element of Array
// Array Remove
Array.prototype.remove = function(from, to) {
var rest = this.slice((to || from) + 1 || this.length);
this.length = from < 0 ? this.length + from : from;
return this.push.apply(this, rest);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment