数字用javascript比大小
时间: 2024-04-29 15:22:47 浏览: 114
如何用JS判断两个数字的大小
比较数字大小可以使用比较运算符(>、<、>=、<=、==、!=)。
例如:
```javascript
var num1 = 10;
var num2 = 5;
if (num1 > num2) {
console.log("num1 is greater than num2");
} else {
console.log("num2 is greater than num1");
}
```
输出结果为:num1 is greater than num2。
注意:使用比较运算符比较时,需要确保比较的两个值都是数字类型。如果其中一个或两个值不是数字类型,则需要先进行类型转换。
阅读全文