Skip to content

Instantly share code, notes, and snippets.

@JakeTheCorn
Created January 22, 2018 15:45
Show Gist options
  • Save JakeTheCorn/f7bd3bcdcd626af210659b9db28bd269 to your computer and use it in GitHub Desktop.
Save JakeTheCorn/f7bd3bcdcd626af210659b9db28bd269 to your computer and use it in GitHub Desktop.
Array.prototype.shuffle = function() {
return this.sort(function() {
return 0.5 > Math.random();
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment