> Help !!! how the hell do i fix this java script function... its driving me insane !!!?

Help !!! how the hell do i fix this java script function... its driving me insane !!!?

Posted at: 2014-12-18 
You have a surplus closing bracket on line 5. Indent your code, check your brackets.

You didnt add any code to your question?

edit:

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

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

}

}

i get the error, unexpected token else