switch 多个case的用法

switch 中想要多个判断都进到一个分支中可以这样写

for (const item of [1, 2, 3, 4, 5, 6]) {
  switch (item) {
    case 1:
    case 2:
    case 3:
    case 4: //以上case都执行这个分支
      console.log("进到1,2,3,4里", item);
      break;
    case 5:
    case 6:
      console.log("进到5,6里", item);
      break;
    default:
      break;
  }
}
//进到1,2,3,4里 1
//进到1,2,3,4里 2
//进到1,2,3,4里 3
//进到1,2,3,4里 4
//进到5,6里 5
//进到5,6里 6
posted @ 2021-10-11 13:31  __Bowen  阅读(8840)  评论(0编辑  收藏  举报