Skip to content

Instantly share code, notes, and snippets.

@bgoonz
Created March 13, 2021 23:56
Show Gist options
  • Save bgoonz/b2a934289a677f337a72bcd7751a55df to your computer and use it in GitHub Desktop.
Save bgoonz/b2a934289a677f337a72bcd7751a55df to your computer and use it in GitHub Desktop.
let rotateRight = function (array, num) {
let result = array.slice(0);
for (var i = 0; i < num; i++) {
// some code here
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment