Skip to content

Instantly share code, notes, and snippets.

@edymerchk
Created May 18, 2014 19:55
Show Gist options
  • Save edymerchk/190b965702cfb34ed1aa to your computer and use it in GitHub Desktop.
Save edymerchk/190b965702cfb34ed1aa to your computer and use it in GitHub Desktop.
function shuffle(o){
for(var j, x, i = o.length; i; j = Math.floor(Math.random() * i), x = o[--i], o[i] = o[j], o[j] = x);
return o;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment