Math
Posted Scar007
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Math相关的知识,希望对你有一定的参考价值。
Math方法
- Math.abs(-12) // 12 取绝对值
- Math.ceil(12.3) //13 向上取整
- Math.floor(12.3) //12 向下取整
- Math.round() 四舍五入
- Math.max(12,3,43,23,45,32,54) 求最大值
- Math.min(12,32,32,23,1,23,4) 求最小值
- Math.random() 获取0到1之间的随机小数
- Math.sqrt 开平方 Math.sqrt(100) //10
- Math.pow 求幂 Math.pow(10,3) //1000
- Math.PI 圆周率 Math.PI //3.1415926..
- Math.round(Math.random()*(m-n)+n) 获取n到m之间的随机整数
以上是关于Math的主要内容,如果未能解决你的问题,请参考以下文章