Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created July 25, 2016 10:29
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 codecademydev/0ba2a66b18f762b097884af45dba8f4d to your computer and use it in GitHub Desktop.
Save codecademydev/0ba2a66b18f762b097884af45dba8f4d to your computer and use it in GitHub Desktop.
Codecademy export
var userChoice = prompt("Do you choose rock,paper or scissors?");
var computerChoice = Math.random();
if(computerChoice <= 0.33){ computerChoice = "rock";
}
else if (computerChoice <= 0.66) { computerChoice = "paper"; }
else { computerChoice = "scissors"; }
console.log(computerChoice);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment