Counting Cards problem

Alright I’m stuck on the counting cards question. I think I done almost everything it said but I just can’t figure out what’s I’m doing wrong. Here it is.


var count = 0;

function cc(card) {
  // Only change code below this lin

  switch (card) {
    case 2:
    case 3:
    case 4:
    case 5:
    case 6:
      count++;
      break;
    case 7:
    case 8:
    case 9:
      break;
    case 10:
    case "J":
    case "Q":
    case "K":
    case "A":
      count--;
      break;
  }

  if (count > 0) {
    return count + "Bet";
  } else {
    return count + "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');

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/counting-cards

The first thing that jumps out is that you are not putting a space between the count and “Bet” or “Hold”.

2 Likes

Thank-you! I need to pay more attention to small details.