Tell us what’s happening:
**Your code so far**
var 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 {0};
} else if (strokes <= par - 2) {
return {1};
} else if (strokes == par - 1) {
return {2};
} else if (strokes == par) {
return {3};
} else if (strokes == par + 1) {
return {4};
} else if (strokes == par + 2) {
return {5};
} else {
return {6};
}
// Only change code above this line
}
console.log(golfScore(5, 4));
**Your browser information:**
User Agent is: Mozilla/5.0 (X11; CrOS x86_64 13421.89.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36
.
Challenge: Golf Code
Link to the challenge: