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

0 points
Submitted by Naxyya Zamaan Kahnn
over 8 years

where's the prob with the syntax?

i matched my code exactly to the hint and yet there’s a syntax prob with it. here’s my code:

var compare= function(choice1, choice2) { if(choice1===choice2) { return “The result is a tie”; } else if(choice1===”rock”) { if(choice2 ===”scissors”) { return “rock wins”; } else { return “paper wins”; }

}

Answer 55cdcc75937676b8730002a6

0 votes

Permalink

I think there is missing a closing } at the end of your code.

   var compare= function(choice1, choice2) {
     if(choice1===choice2) {
     return "The result is a tie";
     }
     else if(choice1==="rock") {
     if(choice2 ==="scissors") {
     return "rock wins";
     }
     else {
     return "paper wins";
        }
      }
    };

this should work

points
Submitted by Edwin Boon
over 8 years