This is for the counting card challenge : https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-javascript/counting-cards#
I understand you can use switch or if else statement, can someone explain why my method doesn’t work when you put multiple cards as input?
My code so far*
let count = 0;
function cc(card) {
// Only change code below this line
if (card ===2 || card===3||card===4||card===5||card===6){
count=count+1;
} else if (card===7||card===8||card===9){
count;
} else if (card===10||card==='J'||card==='Q'||card==='K'||card==='A')
{
count=count-1
}
if (count>0){
return count+ " bet";
} else {
return count+ " hold";
}
// Only change code above this line
}
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36
Challenge: Counting Cards
Link to the challenge: