Golf Code Error Message

Tell us what’s happening:
Keeps telling me it is wrong and I’m nearly 100% sure it is right.

Your code so far

function golfScore(par, strokes) {
  // 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 {
    return "Go Home!";
  }
}

// Change these values to test
golfScore(4, 1);

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:58.0) Gecko/20100101 Firefox/58.0.

Link to the challenge:
https://www.freecodecamp.org/challenges/golf-code

"Hole-in-one!" != "Hole in one!"

Cheers I’ll try that.

1 Like