Skip to content

Instantly share code, notes, and snippets.

@NicolasPio
Created October 26, 2015 17:18
Show Gist options
  • Save NicolasPio/2315d69f74c904798608 to your computer and use it in GitHub Desktop.
Save NicolasPio/2315d69f74c904798608 to your computer and use it in GitHub Desktop.
function shuffleArray(array) {
for (var i = array.length - 1; i > 0; i--) {
var j = Math.floor(Math.random() * (i + 1));
var temp = array[i];
array[i] = array[j];
array[j] = temp;
}
return array;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment