1 | Math.PI | Math.PI 表示一个圆的周长与直径的比例,约为 3.14159: |
2 | Math.SQRT1_2 | Math.SQRT1_2 属性表示 1/2 的平方根,约为 0.707: |
3 | Math.SQRT2 | Math.SQRT2 属性表示 2 的平方根,约为 1.414: |
4 | Math.abs() | Math.abs(x) 函数返回指定数字 “x“ 的绝对值。如下: |
5 | Math.acos() | Math.acos() 返回一个数的反余弦值(单位为弧度),即: |
6 | Math.acosh() | Math.acosh()返回一个数字的反双曲余弦值,即: |
7 | Math.asin() | Math.asin() 方法返回一个数值的反正弦(单位为弧度),即: |
8 | Math.asinh() | Math.asinh() 函数返回给定数字的反双曲正弦值, 即: |
9 | Math.atan() | Math.atan() 函数返回一个数值的反正切(以弧度为单位),即: |
10 | Math.atan2() | Math.atan2() 返回其参数比值的反正切值。 |
11 | Math.atanh() | Math.atanh() 函数返回一个数值反双曲正切值, 即: |
12 | Math.cbrt() | Math.cbrt() 函数返回任意数字的立方根. |
13 | Math.ceil() | Math.ceil() 函数返回大于或等于一个给定数字的最小整数。 |
14 | Math.clz32() | Math.clz32() 函数返回一个数字在转换成 32 无符号整形数字的二进制形式后, 开头的 0 的个数, 比如 1000000 转换成 32 位无符号整形数字的二进制形式后是 00000000000011110100001001000000, 开头的 0 的个数是 12 个, 则 Math.clz32(1000000) 返回 12. |
15 | Math.cos() | Math.cos() 函数返回一个数值的余弦值。 |
16 | Math.cosh() | Math.cosh() 函数返回数值的双曲余弦函数, 可用 constant e 表示: |
17 | Math.exp() | Math.exp() 函数返回 ex,x 表示参数,e 是欧拉常数(Euler's constant),自然对数的底数。 |
18 | Math.expm1() | Math.expm1() 函数返回 Ex - 1, 其中 x 是该函数的参数, E 是自然对数的底数 2.718281828459045. |
19 | Math.floor() | Math.floor() 返回小于或等于一个给定数字的最大整数。 |
20 | Math.fround() | Math.fround() 可以将任意的数字转换为离它最近的单精度浮点数形式的数字。 |
21 | Math.hypot() | Math.hypot() 函数返回它的所有参数的平方和的平方根,即: |
22 | Math.imul() | 该函数返回两个参数的类C的32位整数乘法运算的运算结果. |
23 | Math.log() | Math.log() 函数返回一个数的自然对数,即: |
24 | Math.log10() | Math.log10() 函数返回一个数字以 10 为底的对数. |
25 | Math.log1p() | Math.log1p() 函数返回一个数字加1后的自然对数 (底为 E), 既log(x+1). |
26 | Math.log2() | Math.log2() 函数返回一个数字以 2 为底的对数. |
27 | Math.max() | Math.max() 函数返回一组数中的最大值。 |
28 | Math.min() | Math.min() 返回零个或更多个数值的最小值。 |
29 | Math.pow() | Math.pow() 函数返回基数(base)的指数(exponent)次幂,即 baseexponent。 |
30 | Math.random() | Math.random() 函数返回一个浮点, 伪随机数在范围[0,1),也就是说,从0(包括0)往上,但是不包括1(排除1),然后您可以缩放到所需的范围。实现将初始种子选择到随机数生成算法;它不能被用户选择或重置。他不能被用户选择或重置。 |
31 | Math.round() | Math.round() 函数返回一个数字四舍五入后最接近的整数。 |
32 | Math.sign() | Math.sign() 函数返回一个数字的符号, 指示数字是正数,负数还是零。 |
33 | Math.sin() | Math.sin() 函数返回一个数值的正弦值。 |
34 | Math.sinh() | Math.sinh() 函数返回一个数字(单位为角度)的双曲正弦值. |
35 | Math.sqrt() | Math.sqrt() 函数返回一个数的平方根,即: |
36 | Math.tan() | Math.tan() 方法返回一个数值的正切值。 |
37 | Math.tanh() | Math.tanh() 函数将会返回一个数的双曲正切函数值,计算如下: |
38 | Math.trunc() | Math.trunc() 方法会将数字的小数部分去掉,只保留整数部分。 |