我在Javascript中有一个数组。我也在使用jQuery - 有一个问题是在数组中找到最小值和最大值。
示例:
var x = [23,42,44,1,45,29,99,99,102];
答案 0 :(得分:1)
使用Math.max
& Math.min
& apply
获取价值。 apply
函数的第二个参数接受数组
var x = [23,42,44,1,45,29,99,99,102];
console.log(Math. max. apply(null, x)) // 102
console.log(Math. min. apply(null, x)) //1
答案 1 :(得分:1)
var max = Math.max.apply(Math,array); //最大值
var max = Math.max.apply(Math,array); //最大值
答案 2 :(得分:-1)
var max_of_array = Math.max.apply(Math, array);