Skip to content

Instantly share code, notes, and snippets.

@riquellopes
Created July 21, 2013 20:47
Show Gist options
  • Save riquellopes/6049912 to your computer and use it in GitHub Desktop.
Save riquellopes/6049912 to your computer and use it in GitHub Desktop.
Array.prototype.shuffle=function(){
this.sort(function(){
return 0.5 - Math.random();
});
return this;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment