Created
September 30, 2018 03:44
-
-
Save Lokua/41ebea3696e519d67ec2f0191defc595 to your computer and use it in GitHub Desktop.
rotate.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const rotate = (array, n) => [ | |
...array.slice(array.length - n), | |
...array.slice(0, array.length - n), | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment