利用apply 的方法求最大值和最小值

 //求数组最大值
        var arr = [36, 28, 99, 87, 23, 6, 7]
        var maxValue = Math.max.apply(null, arr)
        var minValue = Math.min.apply(null, arr)
        console.log("数据最大值", maxValue)
        console.log("数据最小值", minValue)

你可能感兴趣的:(p3,jquery,html,css,css3)