Replacing If Else with Switch

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:
    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="";
    break;
  }
    
  // Only change code above this line  
  answer= 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/68.0.3440.106 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/replacing-if-else-chains-with-switch/

You should return answer, it clearly says only to change the lines above

1 Like

Thanks Man
I am looking for error for 2 Days.

It’s good for health, don’t worry! :smile:

1 Like

:smiley:
yup
Anyways thanks man.

1 Like