Skip to content

Instantly share code, notes, and snippets.

@nazomikan
Created April 12, 2012 19:43
Show Gist options
  • Save nazomikan/2370494 to your computer and use it in GitHub Desktop.
Save nazomikan/2370494 to your computer and use it in GitHub Desktop.
nazon.shuffle = function(ary) {
var i = ary.length, j, t;
while (i) {
j = Math.floor(Math.random() * i);
t = ary[--i];
ary[i] = ary[j];
ary[j] = t;
}
return ary;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment