06-找到数组中最大值

2022/3/10 6:17:40

本文主要是介绍06-找到数组中最大值,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1.使用Math.max 或者配合apply (apply是Function.prototype.apply(),apply函数原型上的方法)
Math.max(1, 3, 2) // 3
const array1 = [1, 3, 2];
Math.max(...array1)  // 3

使用 apply 方法寻找一个数值数组中的最大元素

const numbers = [5, 6, 2, 3, 7];
const max = Math.max.apply(null, numbers);
console.log(max); // 7

封装方法:

function getMaxOfArray(numArray) {
    return Math.max.apply(null, numArray);
}
const arr = [5,3,6,2,4]
getMaxOfArray(arr) //6

 



这篇关于06-找到数组中最大值的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程