JSでのswitchの使い方

3942 ワード

このような使い方を記録して、case文の後で簡単な判断操作をすることができます
   switch(true) {
          case item.TOEICSCORE < 250:
              countless250++;
            break;
          case item.TOEICSCORE >= 250 && item.TOEICSCORE < 350:
              count250To350++;
            break;
          case item.TOEICSCORE >= 350 && item.TOEICSCORE < 450:
              count350To450++;
            break;
          case item.TOEICSCORE >= 450 && item.TOEICSCORE < 550:
              count450To550++;
            break;
          case item.TOEICSCORE >= 550 && item.TOEICSCORE < 650:
              count550To650++;
            break;
          case item.TOEICSCORE >= 650:
              countThan650++;
            break;
        }