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

0 points
Submitted by shako95
over 8 years

i got syntex error someone help me :)

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”); } else if (choice1 ===”paper”) { if (choice2 ===”rock”) { return (“paper wins”); } } else { return (“scissors wins”); } }

Answer 56123ebb3e0ec8a2230001b2

0 votes

Permalink

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";
    }
}
else if(choice1 === "paper")
{
    if(choice2 === "rock")
    {
        return "paper wins"
    }
    else
    {
        return "scissors  wins"
    }
}
else
{
    if(choice2 === "rock")
    {
        return "rock wins"
    }
    else
    {
        return "scissors wins"
    }
}

}

points
Submitted by overzestful
over 8 years

Answer 5613795e95e3786a29000058

0 votes

Permalink

it still not working

points
Submitted by shako95
over 8 years