Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created December 8, 2016 13:34
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/8533d36cafbfdc5ed3fea0d0104c4cb1 to your computer and use it in GitHub Desktop.
Save codecademydev/8533d36cafbfdc5ed3fea0d0104c4cb1 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();
var userChoice = prompt( "Do you choose rock, paper or scissors?")
console.log("User Choice: " + userChoice);
var computerChoice= Math.random();
console.log(Computer Choice: + computerChoice);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment