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