Skip to content

Instantly share code, notes, and snippets.

@sz-alpar
Created February 20, 2014 11:07
Show Gist options
  • Save sz-alpar/e983afed2227eb4daefb to your computer and use it in GitHub Desktop.
Save sz-alpar/e983afed2227eb4daefb to your computer and use it in GitHub Desktop.
Splice.
Array.prototype.deleteFromIndex = function(index) {
return this.splice(index,array.length-index);
}
var array = ["Apple","Turtle","Microsoft","Atari","John","Carter","HTC"];
var array2 = array.deleteFromIndex(2);
console.log(array);
console.log(array2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment