Build "Rock, Paper, Scissors"

https://www.codecademy.com/courses/javascript-beginner-en-Bthev-mskY8/1/2?curriculum_id=506324b3a7dffd00020bf661#

SyntaxError: Unexpected token else
Expected identifier instead saw Else
missing ; before statement



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";
        }
        
 }
};

you have a semicolon after your first if statement, take it out and your code should run fine

remove the ; at the end of the condition in your first if statement

wow dumb mistake thanks guys appreciate it.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.