首页 > 代码库 > js Math对象

js Math对象

1.常用的有Math.PI,Math.min()和Math.max();其中min和max可以穿进去参数比如var a = Math.min(2,5,8,1,4);来获取最小值。

2.random方法,常常用来获取随机的

值 = Math.floor(Math.random() * 数组的总数 + 第一个可能的值)

js Math对象