JS中常用的Math方法总结
Math对象是JavaScript中的内置对象之一,它提供了许多数学函数和常量。通过Math对象,我们可以轻松地实现各种数学运算。
本攻略将会介绍JS中常用的Math方法,包括:
- Math.abs()
- Math.ceil()
- Math.floor()
- Math.max()
- Math.min()
- Math.pow()
- Math.random()
- Math.round()
- Math.sqrt()
Math.abs()
Math.abs() 方法返回给定数的绝对值。
Math.abs(-10); // 输出:10
Math.abs(10); // 输出:10
Math.ceil()
Math.ceil() 方法返回大于或等于一个给定数字的最小整数。
Math.ceil(1.1); // 输出:2
Math.ceil(1.9); // 输出:2
Math.floor()
Math.floor() 方法返回小于或等于一个给定数字的最大整数。
Math.floor(1.1); // 输出:1
Math.floor(1.9); // 输出:1
Math.max()
Math.max() 方法返回一组数中的最大值。
Math.max(1, 2, 3); // 输出:3
Math.max(-1, -2, -3); // 输出:-1
Math.min()
Math.min() 方法返回一组数中的最小值。
Math.min(1, 2, 3); // 输出:1
Math.min(-1, -2, -3); // 输出:-3
Math.pow()
Math.pow() 方法返回第一个参数的第二个参数次幂。
Math.pow(2, 3); // 输出:8
Math.pow(4, 0.5); // 输出:2
Math.random()
Math.random() 方法返回介于 0(包括) ~ 1(不包括)之间的一个随机数。
Math.random(); // 输出0到1之间的一个随机小数
Math.round()
Math.round() 方法返回一个数字四舍五入后最接近的整数。
Math.round(1.1); // 输出:1
Math.round(1.5); // 输出:2
Math.round(-1.5); // 输出:-1
Math.sqrt()
Math.sqrt() 方法返回一个数的平方根。
Math.sqrt(4); // 输出:2
Math.sqrt(9); // 输出:3
以上就是JS中常用的Math方法,希望对您有所帮助!
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:js中常用的Math方法总结 - Python技术站