Created
March 13, 2021 23:57
-
-
Save bgoonz/b033f820c35869af0869ce712af68bda to your computer and use it in GitHub Desktop.
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
let rotateRight = function (array, num) { | |
let result = array.slice(0); | |
for (var i = 0; i < num; i++) { | |
let ele = result.pop(); | |
result.unshift(ele); | |
} | |
return result; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment