Basic JavaScript - Golf Code

Someone to help:

Can someone please show me the way to Go Home

Here is the code

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 name[1]
} else if (strokes = par - 1) {
  return name[2]
}

  return "Change Me";
  // Only change code above this line
}

golfScore(5, 4);

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Mobile Safari/537.36

Challenge Information:

Basic JavaScript - Golf Code

You have checked only 3 conditions out of the 7 conditions specified in the challenge and because of that your code doesn’t pass all the test cases. Check the remaining conditions also and return the values accordingly.

Hope this helps!

1 Like

Also check the spelling of your variables

1 Like

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