Hello i have a problem with the eagle. to get a eagle there must be a golfscore (5.2) . Then if strokes <= par -3 it’s a eagle ? no ? , because par = 5 and 5 -3 = 2, thanks for you answers ^^"
const names = ["Hole-in-one!", "Eagle", "Birdie", "Par", "Bogey", "Double Bogey", "Go Home!"];
function golfScore(par, strokes) {
if (strokes == 1) {
return names[0];
} else if (strokes <= par -3) {
return names[1];
} else if (strokes <= par -1) {
return names[2];
} else if (strokes == par) {
return names[3];
}
}
golfScore(5, 4);
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.61 Safari/537.36
Challenge: Golf Code
Link to the challenge: