你可以使用 Math.max.apply()
方法或扩展运算符(spread operator)来获取数组中的最大值。以下是使用这两种方法的示例代码:
使用 Math.max.apply()
方法:
const arr = [3, 7, 2, 8, 5];
const max_value = Math.max.apply(null, arr);
console.log(max_value); // 输出最大值
使用扩展运算符:
const arr = [3, 7, 2, 8, 5];
const max_value = Math.max(...arr);
console.log(max_value); // 输出最大值
数组的 reduce()
方法来获取数组中的
最大值
const arr = [3, 7, 2, 8, 5];
const max_value = arr.reduce((max, current) => max > current ? max : current, arr[0]);
console.log(max_value); // 输出最大值