Skip to content

Instantly share code, notes, and snippets.

@hmert
Created July 28, 2013 07:46
Show Gist options
  • Save hmert/6097856 to your computer and use it in GitHub Desktop.
Save hmert/6097856 to your computer and use it in GitHub Desktop.
window.shuffleArray = (function() {
return function(arr) {
for(var j, x, i = arr.length; i; j = parseInt(Math.random() * i), x = arr[--i], arr[i] = arr[j], arr[j] = x);
return arr;
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment