Skip to content

Instantly share code, notes, and snippets.

@pllearns
Created June 7, 2017 00:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pllearns/fdc418ff16442871c25c0bdaef387762 to your computer and use it in GitHub Desktop.
Save pllearns/fdc418ff16442871c25c0bdaef387762 to your computer and use it in GitHub Desktop.
FreeCodeCamp Exercise Solutions
var count = 0;
function cc(card) {
// Only change code below this line
switch(card) {
case 2:
case 3:
case 4:
case 5:
case 6:
count += 1;
break;
case 7:
case 8:
case 9:
count += 0;
break;
case 10:
case 'J':
case 'Q':
case 'K':
case 'A':
count -= 1;
break;
}
return count + (count > 0 ? " Bet" : " Hold");
// Only change code above this line
}
// Add/remove calls to test your function.
// Note: Only the last will display
cc(2); cc(3); cc(7); cc('K'); cc('A');
cc(4); cc(8); cc(9); cc('Q');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment