Skip to content

Instantly share code, notes, and snippets.

@jozsefs
Created June 26, 2015 07:21
Show Gist options
  • Save jozsefs/fb4cff284cc105335f3c to your computer and use it in GitHub Desktop.
Save jozsefs/fb4cff284cc105335f3c to your computer and use it in GitHub Desktop.
Rotates an array
function rotate(arr, num) {
num = num % arr.length;
return arr.slice(num).concat(arr.slice(0, num))
}
export default rotate;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment