Skip to content

Instantly share code, notes, and snippets.

@gokaybiz
Created February 16, 2025 13:50
Show Gist options
  • Save gokaybiz/243214774276117cc7a9f554cf5369c2 to your computer and use it in GitHub Desktop.
Save gokaybiz/243214774276117cc7a9f554cf5369c2 to your computer and use it in GitHub Desktop.
const randomiser = (array: any[], current: number): number =>
(current + 1 + (Math.random() * (array.length - 1) | 0)) % array.length;
// Example with array.length = 8, current = 7:
// 1. (7 + 1) = 8 // Shift start point after current
// 2. random * 7 | 0 // Get random 0-6
// 3. (8 + random) % 8 // Wrap around length, never hits 7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment