Skip to content

Instantly share code, notes, and snippets.

@1xtr
Last active May 18, 2021 15:02
Show Gist options
  • Save 1xtr/cca9bc378309ea204737a5403a1715f3 to your computer and use it in GitHub Desktop.
Save 1xtr/cca9bc378309ea204737a5403a1715f3 to your computer and use it in GitHub Desktop.
array shuffle
function shuffleArray(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]];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment