Basic JavaScript - Golf Code

What am I doing wrong?

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 (par >= strokes + 2) {
  return names[1];
} else if (par = strokes + 1) {
  return names[2];
} else if (par = strokes) {
  return names[3];
} else if (par = strokes - 1) {
  return names[4];
} else if (par = strokes - 2) {
  return names[5];
} else {
  return names[6];
}
  // 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/116.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Golf Code

Link to the challenge:

What does this line do? (Hint: it doesn’t do what you want it to do)

It should mean if the strokes are equal to 1 I suppose

Check my hint - a singe = doesn’t do what you want here.

= doesn’t do a comparison

1 Like

Correcting it worked thanks

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