Skip to content

Instantly share code, notes, and snippets.

@littleq0903
Created July 30, 2014 02:17
Show Gist options
  • Save littleq0903/c946da0f82b9d3feac34 to your computer and use it in GitHub Desktop.
Save littleq0903/c946da0f82b9d3feac34 to your computer and use it in GitHub Desktop.
code of Build "Rock, Paper, Scissors"
var userChoice = prompt("Do you choose rock, paper or scissors?");
var computerChoice = Math.random();
console.log(computerChoice);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment