Skip to content

Instantly share code, notes, and snippets.

@edfuh
Created April 29, 2011 19:31
Show Gist options
  • Select an option

  • Save edfuh/948873 to your computer and use it in GitHub Desktop.

Select an option

Save edfuh/948873 to your computer and use it in GitHub Desktop.
the fuuu?
var shuffle = function(v){
for(var j, x, i = v.length; i; j = parseInt(Math.random() * i), x = v[--i], v[i] = v[j], v[j] = x);
return v;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment