Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fiote/164b7c64b20129a659c7ca01c5f7b5e3 to your computer and use it in GitHub Desktop.
Save fiote/164b7c64b20129a659c7ca01c5f7b5e3 to your computer and use it in GitHub Desktop.
if ( game.user === game.computer ) {
game.winner = 'tie';
} else {
var wins = {'rock':'scissor','scissor':'paper','paper':'rock'};
game.winner = (wins[game.user] === game.computer) ? 'user' : 'computer';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment