Basic JavaScript - Adding a Default Option in Switch Statements

Tell us what’s happening:
Describe your issue in detail here.
I’m getting an error stating the answer should be “cat” when “c” is the value. I’m not seeing the error in the code.

  **Your code so far**
function switchOfStuff(val) {
let answer = "";
// Only change code below this line
switch(val) {
case "a":
answer = "apple";
break;
case "b":
answer = "bird";
break;
case "c":
answer = "cat";
default:
answer = "stuff";
break;
}


// Only change code above this line
return answer;
}

switchOfStuff(1);
  **Your browser information:**

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

Challenge: Basic JavaScript - Adding a Default Option in Switch Statements

Link to the challenge:

Look closely at how you implemented “b” and then compare that to “c”. Hopefully you will see that you are missing something.

Thank you. I’ve looked at this for about an hour and didn’t see that.

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