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

0 points
Submitted by Fabio Balsamo
about 9 years

hello exercise Paper Beats Rock 5/9 and 6/9 doesn't work...where i wrong)

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);

var compare = function (userChoice, computerChoice){ if(Choice1===Choice2){ return “The result is a tie!”; }else if(choice1 === “rock”){ if(choise2 === “scissors”){ return “rock wins”; }else{ return “paper wins”; } }; console.log(compare);

SyntaxError: Unexpected end of input

Answer 550ad5efe39efe37f5003469

0 votes

Permalink

all done just 1 } missing

points
Submitted by Fabio Balsamo
about 9 years