Tell us what’s happening:
Man, I was cruising right along but this one has me tripped up. Any hints/advice??
Please and thank you!
Your code so far
function chainToSwitch(val) {
var answer = "";
// Only change code below this line
swithc(val);
"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: 7;
answer = "Ate Nine";
break;
}
/*if (val === "bob") {
answer = "Marley";
} else if (val === 42) {
answer = "The Answer";
} else if (val === 1) {
answer = "There is no #1";
} else if (val === 99) {
answer = "Missed me by this much!";
} else if (val === 7) {
answer = "Ate Nine";
}
*/
// Only change code above this line
return answer;
}
// Change this value to test
chainToSwitch(7);
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36
.
Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/replacing-if-else-chains-with-switch