Skip to content

Instantly share code, notes, and snippets.

@nicokruger
Created July 5, 2012 06:43
Show Gist options
  • Save nicokruger/3051850 to your computer and use it in GitHub Desktop.
Save nicokruger/3051850 to your computer and use it in GitHub Desktop.
Rot-n JS
var rot = function (n, l) { return l.slice(n).concat(l.slice(0,n)); };
@ryantheleach
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment