Skip to content

Instantly share code, notes, and snippets.

@bga
Created October 7, 2010 13:42
Show Gist options
  • Save bga/615116 to your computer and use it in GitHub Desktop.
Save bga/615116 to your computer and use it in GitHub Desktop.
Array.prototype._shuffleSelf = function()
{
var i = this.length;
if(i >= 2)
{
var _rand = Math.random;
while(--i)
{
var j = _rand()*i|0;
var temp = this[i];
this[i] = this[j];
this[j] = temp;
}
}
return this;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment