Skip to content

Instantly share code, notes, and snippets.

@softprops
Created June 24, 2009 06:47
Show Gist options
  • Save softprops/135061 to your computer and use it in GitHub Desktop.
Save softprops/135061 to your computer and use it in GitHub Desktop.
// src: http://www.hunlock.com/blogs/Mastering_Javascript_Arrays#quickIDX40
Array.prototype.shuffle = function() {
for(var rnd, tmp, i=this.length; i;
rnd=parseInt(Math.random()*i),
tmp=this[--i],
this[i]=this[rnd],
this[rnd]=tmp);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment