Skip to content

Instantly share code, notes, and snippets.

@yeikos
Created February 5, 2013 11:17
Show Gist options
  • Save yeikos/4713815 to your computer and use it in GitHub Desktop.
Save yeikos/4713815 to your computer and use it in GitHub Desktop.
// Desplazar array
var x = ['a', 'b', 'c', 'd'];
x.push(x.shift()); // ['d', 'b', 'c', 'a']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment