多个数组中数值最大的数组
let a=[1,2,3,4,99]
let b=[2,3,4,10]
let c=[1,4,5,4,1]
let Amax = Math.max(...a)
let Bmax = Math.max(...b)
let Cmax = Math.max(...c)
const getMax=()=>{
let max= Math.max(...[].concat(Amax,Bmax,Cmax))
return ([a,b,c].filter((item)=>{
if(item.indexOf(max)>0){
return item
}
}))[0]
}
console.log(getMax());
浙公网安备 33010602011771号