switch case多值匹配
Posted 炎泽
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了switch case多值匹配相关的知识,希望对你有一定的参考价值。
switch case多值匹配一般有两种情况
1.列举(将所有值列举出来)
var n= 3;
switch (n){
case 1:
case 2:
case 3:
console.log("0~3");
break;
default:
console.log("都不是");
break;
}
2.利用布尔值true
var n= 1;
switch (true){
case n>=0&&n<=10:
console.log(n);
console.log("0~10");
break;
case n>10:
console.log(n);
console.log(">10");
break;
default:
console.log("都不是");
break;
}
值得一提的是在这种情况下case内部依旧能取到n的值
以上是关于switch case多值匹配的主要内容,如果未能解决你的问题,请参考以下文章
C语言的switch case 语句的case 常量 能匹配字符串常量吗?