JS求数组中最小值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS求数组中最小值相关的知识,希望对你有一定的参考价值。

var arr = [34, 12, 55, 27];
console.log(Math.min.apply(null, arr)) // apply()
console.log(Math.min(...arr)) // 扩展运算符
console.log(eval("Math.min(" + arr.toString() + ")")) //eval()
console.log(arr.sort((a,b) => a - b)[0]) // sort()

    var min = arr[0]
    arr.forEach(item => min > item ? item : null)
        console.log(min)      //遍历

以上是关于JS求数组中最小值的主要内容,如果未能解决你的问题,请参考以下文章

js—求数组中的最大最小值

JS求数组中最小值

求js数组中最小值

分享JS数组求和与求最大值的方法

取最大值(最小值)简介代码

JS数组求最大值和最小值