Skip to content

怎么使用 Math.max、Math.min 获取数组中的最值?

Posted on:2023年5月19日 at 09:12

Math.min()Math.max()用法比较类似:

console.log(Math.min(1, 5, 2, 7, 3)); // 输出:1

但它们不接受数组作为参数。

如果想使用数组作为参数,有以下两个方法:

const arr = [1, 5, 2, 7, 3];
console.log(Math.min.apply(null, arr)); // 输出:1
const arr = [3, 5, 1, 6, 2, 8];

const maxVal = Math.max(...arr); // 获取数组中的最大值
原文转自:https://fe.ecool.fun/topic/f1502312-3ac7-4089-b306-f64c301b7dd4