Javascript 利用 switch 语句进行范围判断

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/5619997javascript

相关文章
相关标签/搜索