Basic JavaScript - Golf Code

golfScore(5, 9) should return the string Go Home! i don’t know what to do

Your code so far

const names = ["Hole-in-one!", "Eagle", "Birdie", "Par", "Bogey", "Double Bogey", "Go Home!"];

function golfScore(par, strokes) {
  // Only change code below this line
if (strokes == 1) {
  return names[0] 
} else if (strokes <=par-2) {
  return names[1]
} else if (strokes == par-1) {
  return names[2]
} else if (strokes == par) {
  return names[3]
} else if (strokes == par+1) {
  return names[4]
} else if (strokes == par+2) {
  return names[5]
} else if (strokes == par+3) {
  return names[6]
} else {
  return "Change Me"
}
  // Only change code above this line
}

golfScore(5, 9);

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Golf Code

Link to the challenge:

This isn’t quite right

I know, I’m missing the last test

Right. So what is the last condition supposed to be according to the chart?

Hello @DoctorTMG , There are only 7 options in the challenge… The one that says return "Change me" isn’t one of them… Hope this helps…

you have done everything correctly but u missed the " > " sign in the last condition i.e
you did

Mod Edit: SOLUTION REMOVED
i hope it helps

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.