Skip to content

Instantly share code, notes, and snippets.

@jsdbroughton
Created January 4, 2016 10:02
Show Gist options
  • Save jsdbroughton/4682169b12d5ebb70b26 to your computer and use it in GitHub Desktop.
Save jsdbroughton/4682169b12d5ebb70b26 to your computer and use it in GitHub Desktop.
//+ Jonas Raoni Soares Silva
//@ http://jsfromhell.com/array/shuffle [rev. #1]
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