📅  最后修改于: 2023-12-03 15:29:08.530000             🧑  作者: Mango
find_max(nums)
这是一个用于查找给定数组中最大值的函数。使用该函数可以快速地找到一个数组中的最大数字,它对于需要在一组数字中查找最大数字的场景非常有用。
function find_max(nums) {
// 初始化最大值为负无穷
let max_num = Number.NEGATIVE_INFINITY;
// 遍历数组中的每个数字
for (let num of nums) {
// 如果当前数字比最大值大,则更新最大值
if (num > max_num) {
max_num = num;
}
}
// 返回最大值
return max_num;
}
/**
* 查找给定数组中最大值的函数
*
* @param {Array} nums - 要查找的数组
* @returns {number} - 数组中的最大数字
*/
该函数接受一个数组作为参数,并返回该数组中的最大数字。
const nums = [1, 3, 5, 2, 4];
const max_num = find_max(nums);
console.log(max_num); // 输出:5
上述示例将数组 [1, 3, 5, 2, 4]
传递给 find_max()
函数,并打印出数组中的最大数字 5
。
NaN
。