Skip to content

Instantly share code, notes, and snippets.

@cuprum
Created August 27, 2014 19:17
Show Gist options
  • Save cuprum/f786976d67d46ccb4215 to your computer and use it in GitHub Desktop.
Save cuprum/f786976d67d46ccb4215 to your computer and use it in GitHub Desktop.
Shuffle Array
//+ 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