Skip to content

Instantly share code, notes, and snippets.

@kauefraga
Created April 26, 2026 23:19
Show Gist options
  • Select an option

  • Save kauefraga/1ddeb445e42396d7dd63710f1b009949 to your computer and use it in GitHub Desktop.

Select an option

Save kauefraga/1ddeb445e42396d7dd63710f1b009949 to your computer and use it in GitHub Desktop.
const arr = ['A', 'B', 'C', 'D'];
const k = 3;
let current = 2;
console.log(arr[current]); // 'C'
for (let i = 0; i < k; i++) {
current = (current + 1) % arr.length;
}
console.log(arr[current]); // expected: 'B'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment