Tell us what’s happening:
I have used the switch code to write this function however when I run the code, I don’t get any results. I have gone through it several times, and I can seem to find the error I made. Please help
**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 7:
case 8:
case 9:
count;
break;
case 10:
case "J":
case "Q":
case "K":
case "A":
count--;
break;
}
if (count>0)
{
return count + "Bet";
}
else {
return count + "Hold";
}
return "Change me"
// 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/90.0.4430.212 Safari/537.36
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 7:
case 8:
case 9:
count;
break;
case 10:
case "J":
case "Q":
case "K":
case "A":
count--;
break;
}
if (count>0) {
return count + "Bet";
} else {
return count + "Hold";
}
return "Change me"
// Only change code above this line
}
cc(2); cc(3); cc(7); cc('K'); cc('A');
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.