Skip to content

Instantly share code, notes, and snippets.

@steel1990
Created November 23, 2015 03:54
Show Gist options
  • Save steel1990/328615e32cf3466e1df1 to your computer and use it in GitHub Desktop.
Save steel1990/328615e32cf3466e1df1 to your computer and use it in GitHub Desktop.
function shuffle(array) {
var m = array.length, t, i;
// While there remain elements to shuffle…
while (m) {
// Pick a remaining element…
i = Math.floor(Math.random() * m--);
// And swap it with the current element.
t = array[m];
array[m] = array[i];
array[i] = t;
}
return array;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment