Tell us what’s happening:
Your code so far
function chainToSwitch(val) {
var answer = "";
// Only change code below this line
switch(val) {
case bob:
answer = "Marley";
break;
case 42:
return "The Answer";
break;
case 1
return "There is no #1";
break;
case 99
return "Missed by this much!";
break;
case 7
return "Ate Nine";
break;
}
// Only change code above this line
return answer;
}
// Change this value to test
chainToSwitch(bob);
Your browser information:
User Agent is: Mozilla/5.0 (X11; CrOS x86_64 12105.100.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.144 Safari/537.36
.
Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/replacing-if-else-chains-with-switch