Math.pow(x,y);求出X的幂Y.
Math.ceil(n);向上舍入:大于或等于此数字的最小整数
Var n = 3.2; => 4
Varn = 3.6; => 4
Var n = 3.9; => 4
Math.floor(n); Down取证:最大整数小于这个数
Var n = 3.2; => 3
Varn = 3.6; => 3
Varn = 3.9。=> 3
Math.round();舍入
3.5 => 4
3.3 = >>。3
Math.abs(n);取n的绝对值
Max Max(23.12)。取最大值
Math.min(12.22),取最小值
Math.random();获取0到1之间的随机数。注意:可以获取0但无法获取1。
值从1到0到30:Math.random()* 30
介于2和60之间的值方法:Math.random()* 60
方法值从3到0:Math.random()* 90
要转换
20 =“(10 + 10)
30 =“(20 + 10)
10 =“(0 + 10)
1,方法值从10到30:(0到20)+ 10 =“Math.random()* 20 + 10
如何取值2,20到60:(0到40)+ 20 =“Math.random()* 40 + 20
如何从3,30到90取值:(0到60)+ 30 =“Math.random()* 60 + 30
表面处理:
取10到30之间的随机数(Math.random()*(30-10 + 1))+ 10
我们取20到60的随机数。Math.floor(Math.random()*(60 - 20 + 1))+ 20;
它需要一个30到90的随机数。Math.floor(Math.random()*(90 - 30 + 1))+ 30
法律
找到两个数字之一的随机数[Math.floor(Math.random()*(大数字 - 小数字+ 1))+小数字]
【IT技术主页 - itkeji综合 - 文章版权记录】
除非另有说明,否则本文的版权属于[IT Technology Home - itkeji Comprehensive - ITMFB]。全部表明发件人。
对于其他文章请注意:合成itkeji