当前位置: 首页 > 工具软件 > Math-o-mir > 使用案例 >

Math。

蒋胡非
2023-12-01

1.Math.floor(参数);向下取整  1.1---1,(-1.2)---(-2)

2.Math.ceil(参数);向上取整  1.1---2,(-1.2)---(-1)

3.Math.round(参数);四舍五入取整  1.2---1,1.9---2,(-1.9)---(-2)

4.Math.sqrt(number) 开平方根  

5.Math.pow(m,n)  返回m的n次方

6.Math.min(1,-2,3,4) 返回N个数最小值

7.Math.max(1,-2,3,4)返回N个数最大值

8.Math.abs(number) 返回绝对值

9.Math.random():返回0~1之间的数,左闭右开

 类似资料: