Skip to content

Instantly share code, notes, and snippets.

@jonrohan
Created July 16, 2009 16:39
Show Gist options
  • Save jonrohan/148530 to your computer and use it in GitHub Desktop.
Save jonrohan/148530 to your computer and use it in GitHub Desktop.
/*
* This function moves the nth member of the array to the end
*/
Array.prototype.move2Back = function(n) {
this.push(this.splice(n,1).pop());
return this;
}
var arr = ["Jani","Hege","Stale","Kai Jim","Borge","Tove"];
console.log(arr.move2Back(3));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment