javascript Math.min Math.max

Posted

tags:

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

const arr = [12,23,35,69,85]
console.log(Math.min(...arr)); // Renvoie 12
console.log(Math.max(...arr));// Renvoie 85

以上是关于javascript Math.min Math.max的主要内容,如果未能解决你的问题,请参考以下文章

javascript Math.Min

JavaScript中的内置对象-8-Math-3

javascript中Math函数的属性与方法

math对象的主要方法

JavaScript Math对象方法

javascript中的Math对象