在不使用任何枚举数的情况下找到数组中的最大值,可以通过以下方法实现:
var arr = [1, 2, 3, 4, 5];
var max = Math.max.apply(null, arr);
console.log(max); // 输出:5
var arr = [1, 2, 3, 4, 5];
var max = Math.max(...arr);
console.log(max); // 输出:5
var arr = [1, 2, 3, 4, 5];
var max = arr.reduce(function(a, b) {
return Math.max(a, b);
});
console.log(max); // 输出:5
这些方法都可以在不使用枚举数的情况下找到数组中的最大值。
领取专属 10元无门槛券
手把手带您无忧上云