Skip to content

Instantly share code, notes, and snippets.

@MauricioRobayo
Last active June 13, 2022 14:39
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 MauricioRobayo/d6bf88f90a8d0b28e0847f3ac32df11b to your computer and use it in GitHub Desktop.
Save MauricioRobayo/d6bf88f90a8d0b28e0847f3ac32df11b to your computer and use it in GitHub Desktop.
Fisher Yates shuffle algorithm
function shuffle(array) {
for (let i = array.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1));
[array[i], array[j]] = [array[j], array[i]];
}
return array;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment