Skip to content

Instantly share code, notes, and snippets.

@bgoonz
Created March 13, 2021 23:56
Show Gist options
  • Save bgoonz/44e66960ba5cc0ffe04ea0499f7c3134 to your computer and use it in GitHub Desktop.
Save bgoonz/44e66960ba5cc0ffe04ea0499f7c3134 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++) {
let ele = result.pop();
result.unshift(ele);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment