let arr = [3,2,4,1,8,6] let maxValue = Math.max.apply(null,arr); console.log(maxValue);
PS: Math.max()中的参数不可以传数组
原文地址:https://www.cnblogs.com/manru75/p/10409882.html
时间: 2024-10-12 21:36:18
let arr = [3,2,4,1,8,6] let maxValue = Math.max.apply(null,arr); console.log(maxValue);
PS: Math.max()中的参数不可以传数组
原文地址:https://www.cnblogs.com/manru75/p/10409882.html