Skip to content

Instantly share code, notes, and snippets.

@marcusp619
Last active August 29, 2015 14:14
Show Gist options
  • Save marcusp619/c868915c99fd0158c9e1 to your computer and use it in GitHub Desktop.
Save marcusp619/c868915c99fd0158c9e1 to your computer and use it in GitHub Desktop.
paper, rock, or scissors js
// Paper, Rock, Scissors
var userChoice = prompt("Do you choose rock, paper or scissors?");
var computerChoice = Math.random();
console.log(computerChoice);
if (computerChoice <= 0.33){
console.log("rock");
}
else if (computerChoice <= 0.66){
console.log("paper");
}
else { (computerChoice <= 1)
console.log("scissors");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment