2018-09-30 23:01:58 +01:00
---
id: 5664820f61c48e80c9fa476c
title: Golf Code
challengeType: 1
2019-02-14 12:24:02 -05:00
videoUrl: 'https://scrimba.com/c/c9ykNUR'
2019-07-31 11:32:23 -07:00
forumTopicId: 18195
2021-01-13 03:31:00 +01:00
dashedName: golf-code
2018-09-30 23:01:58 +01:00
---
2020-11-27 19:02:05 +01:00
# --description--
2018-09-30 23:01:58 +01:00
2021-03-19 16:55:21 +04:00
In the game of [golf ](https://en.wikipedia.org/wiki/Golf ), each hole has a `par` , meaning, the average number of `strokes` a golfer is expected to make in order to sink the ball in the hole to complete the play. Depending on how far above or below `par` your `strokes` are, there is a different nickname.
2020-11-27 19:02:05 +01:00
Your function will be passed `par` and `strokes` arguments. Return the correct string according to this table which lists the strokes in order of priority; top (highest) to bottom (lowest):
< table class = 'table table-striped' >< thead >< tr >< th > Strokes</ th >< th > Return</ th ></ tr ></ thead >< tbody >< tr >< td > 1</ td >< td > "Hole-in-one!"</ td ></ tr >< tr >< td > & #x3C ; = par - 2</ td >< td > "Eagle"</ td ></ tr >< tr >< td > par - 1</ td >< td > "Birdie"</ td ></ tr >< tr >< td > par</ td >< td > "Par"</ td ></ tr >< tr >< td > par + 1</ td >< td > "Bogey"</ td ></ tr >< tr >< td > par + 2</ td >< td > "Double Bogey"</ td ></ tr >< tr >< td > >= par + 3</ td >< td > "Go Home!"</ td ></ tr ></ tbody ></ table >
`par` and `strokes` will always be numeric and positive. We have added an array of all the names for your convenience.
# --hints--
2021-03-02 16:12:12 -08:00
`golfScore(4, 1)` should return the string `Hole-in-one!`
2020-11-27 19:02:05 +01:00
```js
assert(golfScore(4, 1) === 'Hole-in-one!');
```
2021-03-02 16:12:12 -08:00
`golfScore(4, 2)` should return the string `Eagle`
2020-11-27 19:02:05 +01:00
```js
assert(golfScore(4, 2) === 'Eagle');
```
2021-03-02 16:12:12 -08:00
`golfScore(5, 2)` should return the string `Eagle`
2020-11-27 19:02:05 +01:00
```js
assert(golfScore(5, 2) === 'Eagle');
```
2021-03-02 16:12:12 -08:00
`golfScore(4, 3)` should return the string `Birdie`
2020-11-27 19:02:05 +01:00
```js
assert(golfScore(4, 3) === 'Birdie');
```
2021-03-02 16:12:12 -08:00
`golfScore(4, 4)` should return the string `Par`
2020-11-27 19:02:05 +01:00
```js
assert(golfScore(4, 4) === 'Par');
```
2021-03-02 16:12:12 -08:00
`golfScore(1, 1)` should return the string `Hole-in-one!`
2020-11-27 19:02:05 +01:00
```js
assert(golfScore(1, 1) === 'Hole-in-one!');
```
2021-03-02 16:12:12 -08:00
`golfScore(5, 5)` should return the string `Par`
2020-11-27 19:02:05 +01:00
```js
assert(golfScore(5, 5) === 'Par');
```
2021-03-02 16:12:12 -08:00
`golfScore(4, 5)` should return the string `Bogey`
2020-11-27 19:02:05 +01:00
```js
assert(golfScore(4, 5) === 'Bogey');
```
2021-03-02 16:12:12 -08:00
`golfScore(4, 6)` should return the string `Double Bogey`
2020-11-27 19:02:05 +01:00
```js
assert(golfScore(4, 6) === 'Double Bogey');
2018-09-30 23:01:58 +01:00
```
2021-03-02 16:12:12 -08:00
`golfScore(4, 7)` should return the string `Go Home!`
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert(golfScore(4, 7) === 'Go Home!');
```
2021-03-02 16:12:12 -08:00
`golfScore(5, 9)` should return the string `Go Home!`
2020-11-27 19:02:05 +01:00
```js
assert(golfScore(5, 9) === 'Go Home!');
```
# --seed--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
## --seed-contents--
2018-09-30 23:01:58 +01:00
```js
2021-10-26 01:55:58 +09:00
const names = ["Hole-in-one!", "Eagle", "Birdie", "Par", "Bogey", "Double Bogey", "Go Home!"];
2018-09-30 23:01:58 +01:00
function golfScore(par, strokes) {
// Only change code below this line
2018-10-08 01:01:53 +01:00
2018-09-30 23:01:58 +01:00
return "Change Me";
// Only change code above this line
}
golfScore(5, 4);
```
2020-11-27 19:02:05 +01:00
# --solutions--
2018-09-30 23:01:58 +01:00
```js
function golfScore(par, strokes) {
if (strokes === 1) {
return "Hole-in-one!";
}
2018-10-08 01:01:53 +01:00
2018-09-30 23:01:58 +01:00
if (strokes < = par - 2) {
return "Eagle";
}
2018-10-08 01:01:53 +01:00
2018-09-30 23:01:58 +01:00
if (strokes === par - 1) {
return "Birdie";
}
2018-10-08 01:01:53 +01:00
2018-09-30 23:01:58 +01:00
if (strokes === par) {
return "Par";
}
2018-10-08 01:01:53 +01:00
2018-09-30 23:01:58 +01:00
if (strokes === par + 1) {
return "Bogey";
}
2018-10-08 01:01:53 +01:00
2018-09-30 23:01:58 +01:00
if(strokes === par + 2) {
return "Double Bogey";
}
2018-10-08 01:01:53 +01:00
2018-09-30 23:01:58 +01:00
return "Go Home!";
}
```