1,属性
主要是各种数学中的常量和常用值
Math.PI 圆周率
Math.PI
3.141592653589793
Math.E 自然对数
Math.E
2.718281828459045
Math.SQRT2 根号2
Math.SQRT2
1.4142135623730951
Math.SQRT1_2 根号二分之一
Math.SQRT1_2
0.7071067811865476
2,方法
Math.max() 求最大值
Math.max(1,2,3)
3
Math.min() 求最小值
Math.min(1,2,3)
1
小数转化为整数
Math.ceil() 向上取整
Math.ceil(0.1)
1
Math.floor() 向下取整
Math.floor(0.1)
0
Math.round() 四舍五入
Math.round(0.4)
0
Math.round(0.5)
1
Math.random() 0~1随机数
Math.random()
0.22203999120936913
function randomAtoB(a,b){
return a+(b-a)*Math.random();
}
undefined
randomAtoB(100,200)
111.68114372079447
function randomAtoB(a,b){
return parseInt(a+(b-a)*Math.random());
}
undefined
randomAtoB(100,200)
199