Skip to content

Instantly share code, notes, and snippets.

@FiNGAHOLiC
Created June 26, 2011 15:56
Show Gist options
  • Save FiNGAHOLiC/1047730 to your computer and use it in GitHub Desktop.
Save FiNGAHOLiC/1047730 to your computer and use it in GitHub Desktop.
Shuffle array
function shuffle(){
var arr = arguments;
var i = arr.length;
while(i){
var j = Math.floor(Math.random()*i);
var t = arr[--i];
arr[i] = arr[j];
arr[j] = t;
};
return arr;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment