What is rong with is code help me and what if we have postive and negative numbers in same sequence plase help

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++;
  break;
  case 10:
  case 'j':
  case 'q':
  case 'A':
  count--;
  break;
}
  
    if(count>0){
      
      return count +"Bet"; }
      else{
      return count +"Hold"
}


// Only change code above this line
}

cc(2); cc(3); cc(7); cc('K'); cc('A');

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 9; SM-A105F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Mobile Safari/537.36.

Challenge: Counting Cards

Link to the challenge:

These are the things that jump out at me:

  • ‘j’ is not the same as ‘J’
  • ‘q’ is not the smae as ‘Q’
  • you do not have any spaces in your return statements, so the number count and the word will be mushed together.

In coding, you need to go slowly enough to pay very close attention to details.

3 Likes