Skip to content

Instantly share code, notes, and snippets.

@bastienrobert
Created March 9, 2021 10:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bastienrobert/8d5c73ffae69e305bf295bcfb4450f1c to your computer and use it in GitHub Desktop.
Save bastienrobert/8d5c73ffae69e305bf295bcfb4450f1c to your computer and use it in GitHub Desktop.
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