JavaScript-Math对象
2019-12-24 本文已影响0人
南崽
本文简单介绍一下JavaScript中常用的Math对象中的方法
Math.PI
- 返回圆周率
Math.PI // 3.1415926
Math.ceil
- 向上取整
Math.ceil(3.112) // 4
Math.floor()
- 向下取整
Math.floor(5.999) // 5
Math.round()
- 四舍五入
Math.floor(4.5) // 5
Math.max()
- 接受多个参数,返回最大值
Math.max(12,34,23) // 34
Math.min()
- 接受多个参数,返回最小值
Math.max(12,34,23) // 12
Math.random()
- 返回一个0~1之间的随机浮点数,包括0不包括1
Math.random() // 0.7030021486057005
js的Math对象还有很多其他方法,随后补充。