codecamp

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);
JavaScript switch语句中的多个相同选项判断
JavaScript 直接在函数中返回boolean值
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定