Created
February 16, 2025 13:50
-
-
Save gokaybiz/243214774276117cc7a9f554cf5369c2 to your computer and use it in GitHub Desktop.
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
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