Tell us what’s happening:
Your code so far
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;
return "\"" + count*card + " Bet\"";
case 7:
case 8:
case 9:
return "\"" + 0 + " Hold\"";
case 10:
case 'J':
case 'Q':
case 'K':
case 'A':
count -= 1;
return "\"" + count + " Bet\"";
}
// Only change code above this line
}
// Add/remove calls to test your function.
// Note: Only the last will display
cc('Q');
Your browser information:
Your Browser User Agent is: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:57.0) Gecko/20100101 Firefox/57.0
.
Link to the challenge:
https://www.freecodecamp.org/challenges/counting-cards