Skip to content

Instantly share code, notes, and snippets.

@thinsoldier
Last active June 12, 2017 16:17
Show Gist options
  • Save thinsoldier/65e1cee967c60f2879409d613b537002 to your computer and use it in GitHub Desktop.
Save thinsoldier/65e1cee967c60f2879409d613b537002 to your computer and use it in GitHub Desktop.
var userChoice = prompt("Do you choose rock, paper or scissors?");
var computerChoice = Math.random();
if(computerChoice <= 0.33){
computerChoice = "rock";
}
else if(computerChoice >= 0.34 && computerChoice <= 0.66){
computerChoice = "paper";
}
else if(computerChoice >= 0.67){
computerChoice = "scissors";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment