数学方法
数学对象Math
Math.xxx (random round ceil floor pow aqrt abs max min PI)
转换进制
保留小数
数学方法
数学对象Math
1,random()
Math.random()--获取0-1的随机数
2,round()
Math.round(n)--四舍五入取整
3,ceil()
Math.ceil(n)--对n向上取整
4,floor()
Math.floor(n)--对n向下取整
5,pow()
Math.pow(n,m)--对n取m次幂
6,sqrt()
Math.aqrt(n)--对n开平方
7,abs()
Math.abs(n)--对n取绝对值
8,max()
Math.max(n1,n2,n3...)---取n1,n2,n2..中的最大值
9,min()
Math.min(n1,n2,n3...)---取n1,n2,n2..中的最小值
10,PI
Math.PI--表示圆周率 Π
转换进制
1,toString()
n.toString()--表示将十进制数n转换为字符串
2,parseInt()
n.parseInt()--表示将字符串转换为十进制数
保留小数
toFixed()
n.tofixed(m)--表示将n保留m位小数