Hi folks - having trouble with this one. Seems like most of the problems other people have had are with typos so I’ve triple checked my code and don’t see any typos.
The code works up until a score of par where it then it falls apart. Can anyone help?
// Only change code below this line
if (strokes == 1){
return “Hole-in-one!”;
}
else if (strokes <= par -2){
return “Eagle”;
}
else if (strokes = par -1){
return “Birdie”;
}
else if (strokes === par){
return “Par”;
}
else if (strokes === par +1){
return “Bogey”;
}
else if (strokes === par +2){
return “Double Bogey”;
}
else if (strokes === par +3){
return “Go Home!”;
}
// Only change code above this line