Skip to content

Instantly share code, notes, and snippets.

@hmert
Forked from remy/gist:333954
Created December 7, 2010 19:10
Show Gist options
  • Save hmert/732236 to your computer and use it in GitHub Desktop.
Save hmert/732236 to your computer and use it in GitHub Desktop.
// pure JS
function shuffle(array) {
return array.sort(function(){
return .5 - Math.random();
});
}
// with Prototype.js you can do
function shuffle(array){
return array.sortBy(Math.random);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment