Basic JavaScript - Replacing If Else Chains with Switch

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

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;
case "John":
   answer="";
   break;
 case "156":
   answer="";
  
 }

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

chainToSwitch(7);

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36 Edg/111.0.1661.62

Challenge: Basic JavaScript - Replacing If Else Chains with Switch

Link to the challenge:

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!

  • currently this case is of type “string”, not exactly what test cases are asking in those kinds of “cases”

lets read from test cases

chainToSwitch(1) should return the string There is no #1

  • do you see how its different case “type” than what you have attempted?

address those changes in all of those “relatable” cases, and it should be fine, happy learning :slight_smile:

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