JavaScript Math 对象
1.Math.PI // // 返回 3.141592653589793
2.Math.round()
Math.round(x) 的返回值是 x 四舍五入为最接近的整数:
3.Math.pow()
Math.pow(x, y) 的返回值是 x 的 y 次幂:
4.Math.sqrt()
Math.sqrt(x) 返回 x 的平方根:
5.Math.abs()
Math.abs(x) 返回 x 的绝对(正)值:
6.Math.ceil()
Math.ceil(x) 的返回值是 x 上舍入最接近的整数:
7.Math.floor()
Math.floor(x) 的返回值是 x 下舍入最接近的整数:
8Math.sin()
Math.sin(x) 返回角 x(以弧度计)的正弦(介于 -1 与 1 之间的值)。
9.Math.cos()
Math.cos(x) 返回角 x(以弧度计)的余弦(介于 -1 与 1 之间的值)。
10.Math.min() 和 Math.max()
Math.min() 和 Math.max() 可用于查找参数列表中的最低或最高值:
11.Math.random()
Math.random() 返回介于 0(包括) 与 1(不包括) 之间的随机数:
12.JavaScript 随机整数
Math.random() 与 Math.floor() 一起使用用于返回随机整数。
Math.floor(Math.random() * 10);// 返回 0 至 9 之间的数
Math.floor(Math.random() * 11);// 返回 0 至 10 之间的数
Math.floor(Math.random() * 100);// 返回 0 至 99 之间的数
Math.floor(Math.random() * 101);// 返回 0 至 100 之间的数
Math.floor(Math.random() * 10) + 1;// 返回 1 至 10 之间的数
Math.floor(Math.random() * 100) + 1;// 返回 1 至 100 之间的数
返回某个数到某个数-1的随机数:
function getRndInteger(min, max) {
return Math.floor(Math.random() * (max - min) ) + min;
}