Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
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