摘要: 正确的写法: if (realValue >= 0 && realValue <= 5) { console.log('正确写法'); } 错误的写法: if (0 <= realValue <= 5) { console.log('错误写法'); } 阅读全文
posted @ 2023-04-17 17:10 ZJTL 阅读(53) 评论(0) 推荐(0) 编辑