前端 JS 经典:Math 常用方法汇总

1. Math.ceil 向上取整

Math.ceil(1.2) // 2

2. Math.floor 向下取整

Math.floor(1.2) // 1

3. Math.round 四舍五入

Math.round(1.4) // 1
Math.round(1.6) // 2

4. Math.random 0-1 随机数

Math.random() // 0.2745798547204079

5. Math.max 返回大值

Math.max(1.2, 2) // 2

6. Math.min 返回小值

Math.min(1.2, 2) // 1.2

7. Math.abs 绝对值

Math.abs(-1) // 1

8. Math.sqrt 开平方

Math.sqrt(9) // 3

9. Math.pow 求幂

Math.pow(2,3) // 8

10. Math.trunc 整数部分

Math.trunc(-1.2) // -1

你可能感兴趣的:(前端,js,经典,前端,javascript)