How does the output work?

I’ve solved the problem, but I do not understand how the code affects a sequence and the output

let count = 0;

function cc(card) {
// Only change code below this line
switch(card){
  case 1:
  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 + " Bet"
}
else{
  return count + " Hold"
}

// Only change code above this line
}

cc(2); cc(1); cc(10); cc('K'); cc('A');
console.log(cc(1))

  **Your browser information:**

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

Challenge: Counting Cards

Link to the challenge:

Then I don’t understand - how did you solve it?

Can you be more specific about what you don’t understand?

I got it now.

count is a global variable, and the cc function stores its output in count.

Thanks for replying

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.