Tell us what’s happening:
Am i supposed to set this up as them each having their own function? I set it up correctly I believe. I just cant see where the issue is. Any pointers would be amazing!
Your code so far
function switchOfStuff(val) {
let answer = "";
// Only change code below this line
switchOfStuff(val) {
case "a":
answer = "apple";
break;
case "b":
answer = "bird";
break;
case "c":
answer = "cat";
break;
default:
answer = "stuff";
}
// 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/118.0.0.0 Safari/537.36
Challenge Information:
Basic JavaScript - Adding a Default Option in Switch Statements