Transcript

var userChoice = prompt("Do you choose rock, paper or scissors?");var computerChoice = Math.random();if (computerChoice < 0.34) {computerChoice = "rock";} else if(computerChoice

Top Related