This forum is now read-only. Please use our new forums! Go to forums

0 points
Submitted by bean
over 8 years

I don't know what i did wrong can someone help me?

var userChoice = prompt(“Do you choose rock, paper or scissors?”); var computerChoice = Math.random(); if (computerChoice < 0.34) { computerChoice = “rock”; } else if(computerChoice <= 0.67) { computerChoice = “paper”; } else { computerChoice = “scissors”; } console log(“Computer: “ + computerChoice);*/vcomparear

var compare = function(choice1 choice2) { if(choice1 === choice2) { return “The result is a tie!”; } };

Answer 55c1296a9113cb648900016c

3 votes

Permalink

var userChoice = prompt(“Do you choose rock, paper or scissors?”); var computerChoice = Math.random(); if (computerChoice < 0.34) { computerChoice = “rock”; } else if(computerChoice <= 0.67) { computerChoice = “paper”; } else { computerChoice = “scissors”; } console log(“Computer: “ + computerChoice);***/vcomparear** Delete this from your code and resubmit.

var compare = function(choice1 choice2) { if(choice1 === choice2) { return “The result is a tie!”; } };

In order for mine to submit I had to remove the exclamation point in the return line and ensure the formatting was correct before it would accept mine.

points
Submitted by Nicole Frazier
over 8 years

Answer 55d1773bd3292fd069000200

-1 votes

Permalink

var userChoice = prompt(“Do you choose rock, paper or scissors?”); var computerChoice = Math.random(); console.log(computerChoice); if(0<computerChoice<0.33) {console.log(“paper”);} else if(0.34<computerChoice<0.66) {console.log(“rock”);} else(0.67<computerChoice<1) {console.log(“cissors”);}

points
Submitted by Samarpit Gupta
over 8 years