在javascript求数组中元素的和,最大值,最小值
时间: 2024-05-09 16:20:42 浏览: 118
JavaScript如何获取数组最大值和最小值
5星 · 资源好评率100%
可以使用reduce方法来求和,使用Math.max和Math.min方法来找到最大值和最小值:
求和:
```javascript
const arr = [1, 2, 3, 4, 5];
const sum = arr.reduce((a, b) => a + b, 0);
console.log(sum); // 15
```
最大值:
```javascript
const arr = [1, 2, 3, 4, 5];
const max = Math.max(...arr);
console.log(max); // 5
```
最小值:
```javascript
const arr = [1, 2, 3, 4, 5];
const min = Math.min(...arr);
console.log(min); // 1
```
阅读全文