Tell us what’s happening:
Your code so far
function switchOfStuff(val) {
var answer = "";
// Only change code below this line
switch (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
}
// Change this value to test
switchOfStuff("a");
Your browser information:
Your Browser User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36
.
Link to the challenge:
https://www.freecodecamp.org/challenges/adding-a-default-option-in-switch-statements