Can anyone tell why this code isn't working?

Tell us what’s happening:

Not sure why this isn’t working. I have checked it with the solution on the ‘get a hint’ page - and it seems to be the same, but the function doesn’t seem to run.

Thanks for your help.
Matt

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 "K":
case "A":
count--;
break;}

if count =< 0 {return count + " Hold";}
else {return count + " Bet";}

// 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 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36.

Challenge: Counting Cards

Link to the challenge:

You have two syntax bugs on this line

if count =< 0 {return count + " Hold";}
  1. The condition for an if statement must be surrounded by ()s.
  2. =< is not a valid comparison. Do you mean <=?

On your if statement on the bottom, you forgot to start it with a (

if (count =< 0( {return count + " Hold";} else {return count + " Bet";}