-
Notifications
You must be signed in to change notification settings - Fork 0
Challenge Golf Code
We will now use our knowledge about else if statements and comparison with equality, less and greater operators.
In the game of golf each hole has a par for the average number of strokes needed to sink the ball. Depending on how far above or below par your strokes are, there is a different nickname.
Your function will be passed a par and strokes. Return strings according to this table (based on order of priority - top (highest) to bottom (lowest)):
| Strokes | Return |
|---|---|
| 1 | "Hole-in-one!" |
| <= par - 2 | "Eagle" |
| par - 1 | "Birdie" |
| par | "Par" |
| par + 1 | "Bogey" |
| par + 2 | "Double Bogey" |
= par + 3 | "Go Home!"
par and strokes will always be numeric and positive.
Remember to use Read-Search-Ask if you get stuck. Try to pair program. Write your own code.
- Challenge: Chaining If Else Statements
- Challenge: Comparison with the Greater Than Equal To Operator
- Challenge: Comparison with the Less Than Equal To Operator
- Change the code below
// Only change code below this lineand above// Only change code above this line - Take note that you are editing the inside of the
golfScorefunction. - You will have to make the function return exactly the same string as shown shown on table, depending on the value of the parameters
parandstrokesthat are passed in to your function.
-
+number -numbercan be used to increase or decrease a parameter in your condition.
- You can chain else if statements to return different values in different scenarios.
- Control the flow of your function based on the tables order of priority - top (highest) to bottom (lowest) to return matching string values.
Solution ahead!
function golfScore(par, strokes) {
// Only change code below this line
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!";
}
// Only change code above this line
}
// Change these values to test
golfScore(5, 4);- Comparing the
parametersstroke and par value to return appropriated string value. - Using else if statement for flow control
- else will return string "Go home!" to every condition where strokes are equal to par +3 or higher
If you found this page useful, you can give thanks by copying and pasting this on the main chat: thanks @osterbergmarcus for your help with Checkpoint: Golf Code
NOTE: Please add your username only if you have added any relevant main contents to the wiki page. (Please don't remove any existing usernames.)
Learn to code and help nonprofits. Join our open source community in 15 seconds at http://freecodecamp.com
Follow our Medium blog
Follow Quincy on Quora
Follow us on Twitter
Like us on Facebook
And be sure to click the "Star" button in the upper right of this page.
New to Free Code Camp?
JS Concepts
JS Language Reference
- arguments
- Array.prototype.filter
- Array.prototype.indexOf
- Array.prototype.map
- Array.prototype.pop
- Array.prototype.push
- Array.prototype.shift
- Array.prototype.slice
- Array.prototype.some
- Array.prototype.toString
- Boolean
- for loop
- for..in loop
- for..of loop
- String.prototype.split
- String.prototype.toLowerCase
- String.prototype.toUpperCase
- undefined
Other Links