js利用函数求数组[10,9,15,12,7]中的最大值
时间: 2023-05-19 08:05:25 浏览: 905
判断数组的最大值
3星 · 编辑精心推荐
可以使用Math.max()方法来求解数组中的最大值,代码如下:
```javascript
let arr = [10, 9, 15, 12, 7];
let max = Math.max(...arr);
console.log(max); // 输出 15
```
这里使用了ES6的展开运算符(...)来将数组中的元素展开作为Math.max()方法的参数。
阅读全文