Math:数学函数:但是他是对象数据类型---->typeof Math ->object
Math对象中给我们提供了很多常用操作数字的方法 console.dir(Math)查看所有方法
- abs:Math.abs:取绝对值
- ceil/floor:Math.ceil:向上取整 Math.floor向下取整
- round:Math.round->四舍五入
- random:Math.random:随机生成[0-1)之间的随机小数 获取(0,10)之间的整数
- Math.round(Math.random()10)获取[n,m]之间的随机整数 ->Math.round(Math.random()(m-n)+n)
- max/min:Math.max:获取一组值中的最大值 Math.min:获取一组值中的最小值
- PI:Math.PI:获取圆周率
- pow && sqrt:Math.pow:获取一个值的多少次幂 Math.sqrt:开平方