Skip to content

Instantly share code, notes, and snippets.

@emkay
Created October 10, 2010 04:28
Show Gist options
  • Save emkay/618956 to your computer and use it in GitHub Desktop.
Save emkay/618956 to your computer and use it in GitHub Desktop.
this.build = function () {
for (i = 1; i <= 4; i++) {
for (j = 1; j <= 13; j++) {
this.cards.push(new Card(j, this.suits[i]));
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment