Created
March 9, 2021 10:19
-
-
Save bastienrobert/8d5c73ffae69e305bf295bcfb4450f1c to your computer and use it in GitHub Desktop.
crawl array to any size +/- offset
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
function crawlArray(arr, cur, n) { | |
return ((cur + n) % arr.length + arr.length) % arr.length | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment