Math
js为了方便开发者,进行数字的一些运算和处理,给提供了一个内置的Math对象,
在Math对象上,有些属性,属性值是对应的函数,这就组成了我们js中数学的运算方法,可以直接通过Math调用
1、Math.abs()
取数字的绝对值 (正数)
console.log(Math.abs(-3));//--->3
2、Math.ceil()
数字向上取整
3、Math.floor()
数字向下取整
4、Math.round()
获取数字进行四舍五入
5、Math.roandom()
获取0-1之间随机小数,包含0
Math.round(Math.random()*(90-60)+60);
包括60和90
6、Math.round(Math.random()*(n-m)+m);
任意数之间取整数