JavaScript Counting Cards1

Tell us what’s happening:
help me, i tried doing it what i understood. But, could not pass the test cases. Thanks in advance

Your code so far
Here is my code as shown below
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/counting-cards


var count = 0;

function cc(card) {
  // Only change code below this line
  if (card >= 2 && card <= 6) {
    count ++;
  }
  else if (card == 10 || card == 'J' || card == 'Q' || card == 'K' || card == 'A')
  {
    count--;
  }
  if (count >= 1){
     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');

Your browser information:

User Agent is: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:67.0) Gecko/20100101 Firefox/67.0.

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

spaces count as characters, if you check "something" === "something " (which is what tests do to check if your function returns the right thing) it will be false, because of the space at the end

why do you have spaces at the end?