I’m not sure what I’m doing wrong. The errors are coming up no if/else statements in the code. I don’t have any and at least 4 break points. I have more than 4.
Your code so far
function chainToSwitch(val) {
var answer = "";
// Only change code below this line
switch (val) {
case "bob":
answer = "Marley";
break;
case 42:
answer = "The Answer";
break;
case 1:
answer = "There is no #1";
break;
case 99:
answer = "Missed me by this much!";
break;
case "John":
answer = "";
break;
case 156:
answer = "";
break;
default: {
answer = "Ate Nine";
// Only change code above this line
return answer;
}
// Change this value to test
chainToSwitch(7);
Your browser information:
Your Browser User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36
.
Link to the challenge: