Skip to content

Instantly share code, notes, and snippets.

@catdad
Created November 12, 2015 04:07
Show Gist options
  • Save catdad/625b836d9428da21a58b to your computer and use it in GitHub Desktop.
Save catdad/625b836d9428da21a58b to your computer and use it in GitHub Desktop.
// http://jsfromhell.com/array/shuffle
function shuffle(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