Skip to content

Instantly share code, notes, and snippets.

@jessabean
Last active December 12, 2015 00:28
Show Gist options
  • Save jessabean/4683708 to your computer and use it in GitHub Desktop.
Save jessabean/4683708 to your computer and use it in GitHub Desktop.
codecademy rock paper scissors
var compare = function(choice1, choice2) {
if (choice1 = "rock") {
if (choice1 === choice2) {
return "The result is a tie!";
} else if (choice2 = "scissors") {
return "rock wins";
} else {
return "paper wins";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment