我正在尝试使用for循环查找并返回每个数组中的最大数字,但每次我尝试打印时都会出现错误。我尝试使用以下JS数组方法:Math.max,Math.max.apply但我无法让它们工作。
我的代码如下。任何帮助将不胜感激,如果你能指出我做错了什么,那将是非常好的。提前谢谢!
问题:数字是一个整数数组。查找并返回最大的整数。
我的代码:
#####11111111###
答案 0 :(得分:2)
您可以使用Math.max.apply
作为以下示例来查找数组中的最大值
function largestNumber(numbers) {
return Math.max.apply(null, numbers);
}
console.log(largestNumber([1, 2, 3, 4, 5]));