原生js之Math对象
程序员文章站
2023-08-19 09:50:11
1、比较方法(常用) 2、取整(常用) 3、随机数(常用) 4、其他(不常用) ......
1、比较方法(常用)
math.min() //求一组数中的最小值 不能是数组,和对象等等。 math.max() //求一组数中的最大值
eg:math.min(5,3,5) // 3
2、取整(常用)
math.ceil() // 向上取整 math.round() // 四舍五入 math.floor() // 向下取整
3、随机数(常用)
math.random() // 生成0~1之间的随机数
4、其他(不常用)
math.abs(num) //返回num绝对值 math.exp(num) //返回math.e的num次幂 e 大约为 2.718..... math.log(num) //返回num的自然对数 math.pow(num,power)// 返回num的power次幂 math.sqrt(num) //返回num的平方根 math.scos(x) //返回x的反余弦值 math.asin(x) //返回x的反正弦值 math.atan(x) //返回x的反正切值 math.atan2(y,x) //返回y/x的反正切值 math.cos(x) //返回x的余弦值 math.sin(x) //返回x的正弦值 math.tan(x) //返回x的正切值