js中的Math对象的几种方法及作用

math(数学运算)对象的方法:
math.random() 返回0-1之间的随机数
math.max() 返回较大的数
math.min() 返回较小的数
math.abs() 取绝对值
math.round() 四舍五入成整数(只看小数点后一位)
math.ceil() 向上取整
math.floor() 向下取整
math.pow(x,y) x的y次方
math.sqrt(num) 开平方
下面传入的参数是弧度
math.sin()
math.cos()
math.PI=180弧度  1弧度=Math.PI/180 例如:Math.sin(30*Math.PI/180);

你可能感兴趣的:(javascript)