Tell us what’s happening:
Your code so far
var count = 0;
function cc(card) {
// Only change code below this line
var msg = '';
Switch (card) {
case 2:
case 3:
case 4:
case 5:
case 6:
count++;
break;
case 7:
case 8:
case 9:
count = count;
break;
case 10:
case "J":
case "Q":
case "K":
case "A":
count--;
break;
}
if (count === 5) msg = "5 Bet";
else if (count === 0) msg = "0 Hold";
else if (count === -5) msg = "-5 Hold";
else if (count === -1) msg = "-1 Hold";
else if (count === 1) msg = "1 Bet";
return msg;
// 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');
more explanation on my code above please cause i really do not know why the test is not running or where am getting it wrong.