score.md

In the game of 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 a hole to complete the play. Depending on how far above or below par your strokes are, there is a different nickname. | Strokes | Return | |-------------|----------------| | 1 | "Hole-in-one!" | | <= par - 2 | | | par - 1 | | ```js function golfScore(par, strokes) { if (strokes == 1) { return "Hole-in-one!"; } else if (strokes <= par - 2) { return "Eagle"; } else if (strokes == par - 1) { return "Birdie"; } else if (strokes == par) { return "Par"; } else if (strokes == par + 1) { return "Bogey"; } else if (strokes == par + 2) { return "Double Bogey"; } else { return "Go Home!"; } } golfScore(5, 5); ```
Golf Score JS Code

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.