Skip to content

Instantly share code, notes, and snippets.

@gingerrific
Last active August 29, 2015 14:01
Show Gist options
  • Save gingerrific/b24a1acf02aa33874586 to your computer and use it in GitHub Desktop.
Save gingerrific/b24a1acf02aa33874586 to your computer and use it in GitHub Desktop.
function switchUp (array) {
coolArray = (array.slice(2)).concat(array.slice(0,2))
return coolArray;
}
// if passed [1,2,3,4,5,6,7] returns [3, 4, 5, 6, 7, 1, 2]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment