Responsive Web Design Projects - Can't run test on codepen for

Tell us what’s happening:
Describe your issue in detail here.
Hey, I’m unable to run test for responsive web design projects on codepen. I don’t have the hamburger icon in the top left corner. Anyone can help me out with what’s wrong? Thanks!

  **Your code so far**

var count = 0;

function cc(card) {
switch(card) {
  case 2:
  case 3:
  case 4:
  case 5:
  case 6:
    count += 1;
    return count + " Bet";
  case 7:
  case 8:
  case 9:
    return count + " Hold";
    break;
  default:
    count -= 1;
    return count + " Hold";
    break;
}
}

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_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36

Challenge: Counting Cards

Link to the challenge:

the code you posted and your question do not match, can you be clear on what you are asking?

it’s OK, fixed it thanks

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