some problem here !!

Tell us what’s happening:
Describe your issue in detail here.

   **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;
case 9 :
case 8 :
case 9 :
count+=0;
 break; 
}
var Holdbit = "Hold"
if (count > 0)
{Holdbit = " Bit"}
return count + " " + Holdbit


 // 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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36

Challenge: Counting Cards

Link to the challenge:

Hello there.

Do you have a question?

If so, please edit your post to include it in the Tell us what’s happening section.

Learning to describe problems is an important part of learning how to code.

Also, the more information you give us, the more likely we are to be able to help.


This looks like a typo. ‘Bet’ vs ‘Bit’

i have some problem how to run this code because i m sure that my code is true but it 's not running for more information y can visit this link :

and i m so glad to help me :slight_smile:

sorry but have the same problem :sweat_smile:
i change bet to bit

If you’ve changed your code, please post your code.

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;

case 9 :

case 8 :

case 9 :

 count+=0;

 break;}

var Holdbit = "Hold"

if (count > 0)

{Holdbit = " Bet"}

return count + " " + Holdbit

  

  // Only change code above this line

}

this is afther change .

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

1 Like

with this you end with two spaces instead of the required one

1 Like

These look strange on my phone. Are they minus signs? (Honestly can’t quite tell in this font.)

--
1 Like

Yeah, it’s a proper decrement.

When I fix the problem raised by ilenia, the latest code passes for me.

2 Likes

yes they are minus signs.

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