编写一个函数,接收一个数字数组作为参数,并返回数组中的最大值。
function findMax(arr) {
// 你的代码
}
console.log(findMax([3, 1, 4, 1, 5, 9, 2, 6])); // 输出 9
编写一个函数,接收一个数字数组作为参数,并返回数组中的最大值。
function findMax(arr) {
// 你的代码
}
console.log(findMax([3, 1, 4, 1, 5, 9, 2, 6])); // 输出 9
function findMaxValue(numbers) {
if (!Array.isArray(numbers) || numbers.length === 0) {
return null; // 如果输入不是数组或数组为空,返回null
}
return Math.max(...numbers); // 使用扩展运算符和Math.max方法找到最大值
}
// 示例使用
const maxValue = findMaxValue([1, 2, 3, 4, 5]);
console.log(maxValue); // 输出: 5