Quotes help make search much faster. Example: "Practice Makes Perfect"

Thursday, May 11, 2017

FreeCodeCamp Golf Code


//sample solution
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 if(strokes >= par + 3) {
    return "Go Home!";
  }
  // Only change code above this line
}

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts