Skip to content

Instantly share code, notes, and snippets.

@bastienrobert
Created March 9, 2021 10:19
Embed
What would you like to do?
crawl array to any size +/- offset
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