Js tutorial Math

属性

  • Math.E 欧拉常数,也是自然对数的底数,约等于 2.718
  • Math.LN2 2 的自然对数,约等于 0.693
  • Math.LN10 10 的自然对数,约等于 2.303
  • Math.LOG2E2 为底的 E 的对数,约等于 1.443
  • Math.LOG10E10 为底的 E 的对数,约等于 0.434
  • Math.PI 圆周率,一个圆的周长和直径之比,约等于 3.14159
  • Math.SQRT1_2 二分之一 ½ 的平方根,同时也是 2 的平方根的倒数 12,约等于 0.707
  • Math.SQRT2 2 的平方根,约等于 1.414

方法

  1. Math.abs()
  2. Math.acos()
  3. Math.acosh()
  4. Math.asin()
  5. Math.asinh()
  6. Math.atan()
  7. Math.atan2()
  8. Math.atanh()
  9. Math.cbrt()
  10. Math.ceil()
  11. Math.clz32()
  12. Math.cos()
  13. Math.cosh()
  14. Math.exp() Math.exp() 函数返回 exx 表示参数
  15. Math.expm1() Math.expm1() 函数返回Ex - 1, 其中x是该函数的参数,E是自然对数的底数2.718281828459045.
  16. Math.floor()
  17. Math.fround()
  18. Math.hypot()
  19. Math.imul()
  20. Math.log()
  21. Math.log10()
  22. Math.log1p()
  23. Math.log2()
  24. Math.max()
  25. Math.min()
  26. Math.pow()
  27. Math.random()
  28. Math.round()
  29. Math.sign()
  30. Math.sin()
  31. Math.sinh()
  32. Math.sqrt()
  33. Math.tan()
  34. Math.tanh()
  35. Math.trunc()