Array.prototype.max = function(){ //最大值
return Math.max.apply({},this)
}
Array.prototype.min = function(){ //最小值
return Math.min.apply({},this)
}
[1,2,3].max()// => 3
[1,2,3].min()// => 1
Js取数组中最大值和最小值
最新推荐文章于 2023-12-07 18:05:37 发布
Array.prototype.max = function(){ //最大值
return Math.max.apply({},this)
}
Array.prototype.min = function(){ //最小值
return Math.min.apply({},this)
}
[1,2,3].max()// => 3
[1,2,3].min()// => 1