Skip to content

Instantly share code, notes, and snippets.

@brigand
Created January 2, 2014 18:19
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 brigand/8223758 to your computer and use it in GitHub Desktop.
Save brigand/8223758 to your computer and use it in GitHub Desktop.
var userChoice = prompt("Do you choose rock, paper or scissors?");
var computerChoice = Math.random();
console.log(computerChoice);
if(computerChoice <= 1/3){
computerChoice = "rock";
} else if(computerChoice <= 2/3){
computerChoice = "paper";
} else if(computerChoice <= 1){
computerChoice = "scissors";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment