js数组取最大值
时间: 2023-07-07 10:10:32 浏览: 89
判断数组的最大值
3星 · 编辑精心推荐
可以使用JavaScript中的Math.max()方法来获取数组中的最大值。例如:
```javascript
let arr = [1, 5, 3, 8, 2];
let maxNum = Math.max(...arr);
console.log(maxNum); // 输出8
```
这里使用了扩展运算符(...)将数组展开为参数传递给Math.max()方法。
阅读全文