利用 switch 语句进行范围判断(javascript)

const x = this.dealer;
switch (true) {
    case (x < 5):
        alert("less than five");
        break;
    case (x < 9):
        alert("between 5 and 8");
        break;
    case (x < 12):
        alert("between 9 and 11");
        break;
    default:
        alert("none");
        break;
}

参考

https://stackoverflow.com/a/5619997

原文地址:https://www.cnblogs.com/teemwu/p/11763445.html