Skip to content

Instantly share code, notes, and snippets.

@fuzzyfox
Last active December 19, 2015 15:59
Show Gist options
  • Save fuzzyfox/5980251 to your computer and use it in GitHub Desktop.
Save fuzzyfox/5980251 to your computer and use it in GitHub Desktop.
JavaScript: Array cycle
// Remove first element, place it at the end.
// Returns the first element before move.
Array.prototype.cycle || Array.prototype.cycle = function(){
var rtn = this.shift();
this.push(rtn);
return rtn;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment