
JavaScript 使用switch语句替换串联的if、else if语句
function myTest(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";
}
// Only change code above this line
return answer;
}
// Change this value to test
myTest(7);