Basic JavaScript - Replacing If Else Chains with Switch

Tell us what’s happening:
Describe your issue in detail here.

I am not sure what I have wrong in my code. Any advice would be appreciated.
Your code so far

function chainToSwitch(val) {
 let 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 7:
     answer = "Ate Nine";
     break;

 // Only change code above this line
 return answer;
}

chainToSwitch(7);
   **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:103.0) Gecko/20100101 Firefox/103.0

Challenge: Basic JavaScript - Replacing If Else Chains with Switch

Link to the challenge:

aren’t you missing something around here?

I guess im blind. I don’t see it. :frowning:

hint: the missing thing looks like this: }

Haha. Thank you. I had just gone back and looked over it again and saw that. I appreciate you pointing me in the right direction. It might be time for a coffee break!! lol

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.