最大/最小值
2022年4月14日
使用 Math.min() 或 Math.max() 结合扩展运算符来查找数组中的最小值或最大值
const numbers = [6, 8, 1, 3, 9];
console.log(Math.max(...numbers)); // 9
console.log(Math.min(...numbers)); // 1
使用 Math.min() 或 Math.max() 结合扩展运算符来查找数组中的最小值或最大值
const numbers = [6, 8, 1, 3, 9];
console.log(Math.max(...numbers)); // 9
console.log(Math.min(...numbers)); // 1