Counting Cards Switch Syntax Query

Tell us what’s happening:
I created a post trying to understand how to solve counting cards with if/else syntax (haven’t managed yet) and I wanted to ask for advice in trying to solve this problem in switch syntax. Would someone mind telling me if I am on the right track at all?

Thanks.

Your code so far


var count = 0;

function cc(card) {
  switch(card) {
    case 2: 
    case 3: 
    case 4: 
    case 5: 
    case 6:
    count += 1;
    break;
    case 10:
    case "J":
    case "Q":
    case "K":
    case "A":
    count -= 1;
    break;
  }

  if (card <=6) {
    card<=6 + 5;
    return "Bet";
  } else {
    return "Hold";
  }
  return "Change me";
}
cc(2); cc(3); cc(7); cc("K"); cc("A");

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134.

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