JavaScript,从数组中获取最大值,最精简代码
时间: 2023-05-21 12:03:56 浏览: 110
JS获取数组最大值、最小值及长度的方法
可以使用 Math.max() 方法来获取数组中的最大值,代码如下:
```javascript
const arr = [1, 2, 3, 4, 5];
const max = Math.max(...arr);
console.log(max); // 输出 5
```
这里使用了 ES6 的扩展运算符将数组展开成参数列表,然后传递给 Math.max() 方法。
阅读全文