Math对象里面提供的方法,可以帮助我们解决算术问题
以下是几种方法:
Math.random() 方法:返回一个0到1之间的随机数
例:返回1000到2000之间的随机数
console.log(parseInt(Math.random()*1001)+1000);
abs()方法: 返回一个数的绝对值
例:console.log(Math.abs(-55));
打印结果是55
ceil() 方法:向上取整(只要有小数就进一)
例:console.log(Math.ceil(55.01));
打印结果是56
floor() 方法:向下取整(有小数去掉小数)
例:console.log(Math.floor(55.99));
打印结果是55
max() 方法:返回最大值
例:console.log(Math.max(11,22,33,38,2,3,4));
min()方法: 返回最小值
例:console.log(Math.min(11,22,33,38,2,3,4));
pow() 方法:返回指定数的次幂
例:console.log(Math.pow(3,3));
round()方法: 四舍五入
例:console.log(Math.round(55.5));
打印结果56
例:console.log(Math.round(55.4));
打印结果55