Skip to content

Instantly share code, notes, and snippets.

@rjmacarthy
Created April 21, 2016 14:18
Show Gist options
  • Save rjmacarthy/02493fea68c88238473a8bf0703f6a48 to your computer and use it in GitHub Desktop.
Save rjmacarthy/02493fea68c88238473a8bf0703f6a48 to your computer and use it in GitHub Desktop.
Shift an array.
var arr = [1,2,3,4];
var i = 0, times = 4;
while (i < times) {
arr.unshift(arr.pop());
console.log(arr);
i++;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment