Skip to content

Instantly share code, notes, and snippets.

@kevinbluer
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kevinbluer/2ef930adf1eba17dc699 to your computer and use it in GitHub Desktop.
Save kevinbluer/2ef930adf1eba17dc699 to your computer and use it in GitHub Desktop.
function shuffleCards(cards){
var currentIndex = cards.length, temporaryValue, randomIndex;
// While there remain elements to shuffle...
while (0 !== currentIndex) {
// Pick a remaining element...
randomIndex = Math.floor(Math.random() * currentIndex);
currentIndex -= 1;
// And swap it with the current element.
temporaryValue = cards[currentIndex];
cards[currentIndex] = cards[randomIndex];
cards[randomIndex] = temporaryValue;
}
cards.each(function(index,card){
$("#game-cards").prepend(card);
});
return cards;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment