首頁 > web前端 > js教程 > 主體

掌握 JavaScript 的數學物件:內建數學函數和屬性的綜合指南

WBOY
發布: 2024-09-08 20:34:08
原創
875 人瀏覽過

Mastering JavaScript

JavaScript 數學物件:概述

JavaScript Math 物件是內建對象,提供數學函數和常數的集合。它不是建構函數,因此您無法建立它的實例;相反,它是透過其靜態方法和屬性直接使用的。

1.常數

Math 物件包含幾個對數學計算有用的常數:

  • Math.E:自然對數的底數,約等於 2.718。
  • Math.LN2:2的自然對數,約等於0.693。
  • Math.LN10:10 的自然對數,約等於 2.303。
  • Math.LOG2E:E 的以 2 為底的對數,約等於 1.442。
  • Math.LOG10E:E 以 10 為底的對數,約等於 0.434。
  • Math.PI:圓的周長與其直徑的比值,約等於 3.14159。
  • Math.SQRT1_2:1/2 的平方根,約等於 0.707。
  • Math.SQRT2:2 的平方根,約等於 1.414。

2.方法

Math 物件提供了多種執行數學運算的方法:

  • Math.abs(x):傳回x的絕對值。
  Math.abs(-5); // 5
登入後複製
  • Math.ceil(x):將 x 向上捨入到最接近的整數。
  Math.ceil(4.2); // 5
登入後複製
  • Math.floor(x):將 x 向下捨去到最接近的整數。
  Math.floor(4.7); // 4
登入後複製
  • Math.round(x):將 x 四捨五入到最接近的整數。
  Math.round(4.5); // 5
登入後複製
  • Math.max(...values):傳回零個或多個數字中的最大值。
  Math.max(1, 5, 3); // 5
登入後複製
  • Math.min(...values):傳回零個或多個數字中的最小值。
  Math.min(1, 5, 3); // 1
登入後複製
  • Math.random():傳回 0(含)和 1(不含)之間的偽隨機數。
  Math.random(); // e.g., 0.237
登入後複製
  • Math.pow(base, exponent):傳回底數的指數次方。
  Math.pow(2, 3); // 8
登入後複製
  • Math.sqrt(x):傳回 x 的平方根。
  Math.sqrt(9); // 3
登入後複製
  • Math.trunc(x):傳回 x 的整數部分,刪除任何小數位。
  Math.trunc(4.9); // 4
登入後複製

3.用法範例

以下是一些如何使用 Math 物件的實際範例:

  • 產生隨機整數
  function getRandomInt(min, max) {
    return Math.floor(Math.random() * (max - min + 1)) + min;
  }
  console.log(getRandomInt(1, 10)); // e.g., 7
登入後複製
  • 計算斜邊
  function calculateHypotenuse(a, b) {
    return Math.sqrt(Math.pow(a, 2) + Math.pow(b, 2));
  }
  console.log(calculateHypotenuse(3, 4)); // 5
登入後複製

4.限制與注意事項

  • 精確度問題:浮點運算可能會導致精確度問題。例如,由於舍入誤差,Math.sqrt(2) * Math.sqrt(2) 可能不完全等於 2。
  • 不是建構子:Math 物件沒有建構子函數。所有屬性和方法都是靜態的。

數學物件方法與屬性


1. Math.abs(x)

傳回 x 的絕對值。

console.log(Math.abs(-10)); // 10
console.log(Math.abs(5.5)); // 5.5
登入後複製

2. Math.acos(x)

傳回 x 的反餘弦(反餘弦),以弧度表示。

console.log(Math.acos(1)); // 0
console.log(Math.acos(0)); // 1.5707963267948966 (π/2)
登入後複製

3. Math.acosh(x)

傳回 x 的雙曲反餘弦。

console.log(Math.acosh(1)); // 0
console.log(Math.acosh(2)); // 1.3169578969248166
登入後複製

4. Math.asin(x)

傳回 x 的反正弦(反正弦),以弧度表示。

console.log(Math.asin(0)); // 0
console.log(Math.asin(1)); // 1.5707963267948966 (π/2)
登入後複製

5. Math.asinh(x)

傳回 x 的雙曲反正弦。

console.log(Math.asinh(0)); // 0
console.log(Math.asinh(1)); // 0.881373587019543
登入後複製

6. Math.atan(x)

傳回 x 的反正切(反正切),以弧度表示。

console.log(Math.atan(1)); // 0.7853981633974483 (π/4)
console.log(Math.atan(0)); // 0
登入後複製

7. Math.atan2(y, x)

傳回其參數商的反正切值,以弧度表示。

console.log(Math.atan2(1, 1)); // 0.7853981633974483 (π/4)
console.log(Math.atan2(-1, -1)); // -2.356194490192345 (-3π/4)
登入後複製

8. Math.atanh(x)

傳回 x 的雙曲反正切值。

console.log(Math.atanh(0)); // 0
console.log(Math.atanh(0.5)); // 0.5493061443340549
登入後複製

9. Math.cbrt(x)

回傳 x 的立方根。

console.log(Math.cbrt(27)); // 3
console.log(Math.cbrt(-8)); // -2
登入後複製

10。 Math.ceil(x)

將 x 向上捨入到最接近的整數。

console.log(Math.ceil(4.2)); // 5
console.log(Math.ceil(-4.7)); // -4
登入後複製

11。 Math.clz32(x)

傳回 x 的 32 位元二進位表示形式中前導零的數量。

console.log(Math.clz32(1)); // 31
console.log(Math.clz32(0x80000000)); // 0
登入後複製

12。數學.cos(x)

傳回 x 的餘弦(其中 x 的單位是弧度)。

console.log(Math.cos(0)); // 1
console.log(Math.cos(Math.PI)); // -1
登入後複製

13. Math.cosh(x)

Returns the hyperbolic cosine of x.

console.log(Math.cosh(0)); // 1
console.log(Math.cosh(1)); // 1.5430806348152437
登入後複製

14. Math.E

Returns Euler's number, approximately 2.718.

console.log(Math.E); // 2.718281828459045
登入後複製

15. Math.exp(x)

Returns the value of e raised to the power of x.

console.log(Math.exp(1)); // 2.718281828459045
console.log(Math.exp(0)); // 1
登入後複製

16. Math.expm1(x)

Returns the value of e raised to the power of x, minus 1.

console.log(Math.expm1(1)); // 1.718281828459045
console.log(Math.expm1(0)); // 0
登入後複製

17. Math.floor(x)

Rounds x downwards to the nearest integer.

console.log(Math.floor(4.7)); // 4
console.log(Math.floor(-4.2)); // -5
登入後複製

18. Math.fround(x)

Returns the nearest (32-bit single precision) float representation of x.

console.log(Math.fround(1.337)); // 1.336914
console.log(Math.fround(1.5)); // 1.5
登入後複製

19. Math.LN2

Returns the natural logarithm of 2, approximately 0.693.

console.log(Math.LN2); // 0.6931471805599453
登入後複製

20. Math.LN10

Returns the natural logarithm of 10, approximately 2.302.

console.log(Math.LN10); // 2.302585092994046
登入後複製

21. Math.log(x)

Returns the natural logarithm (base e) of x.

console.log(Math.log(Math.E)); // 1
console.log(Math.log(10)); // 2.302585092994046
登入後複製

22. Math.log10(x)

Returns the base-10 logarithm of x.

console.log(Math.log10(10)); // 1
console.log(Math.log10(100)); // 2
登入後複製

23. Math.LOG10E

Returns the base-10 logarithm of e, approximately 0.434.

console.log(Math.LOG10E); // 0.4342944819032518
登入後複製

24. Math.log1p(x)

Returns the natural logarithm of 1 + x.

console.log(Math.log1p(1)); // 0.6931471805599453
console.log(Math.log1p(0)); // 0
登入後複製

25. Math.log2(x)

Returns the base-2 logarithm of x.

console.log(Math.log2(2)); // 1
console.log(Math.log2(8)); // 3
登入後複製

26. Math.LOG2E

Returns the base-2 logarithm of e, approximately 1.442.

console.log(Math.LOG2E); // 1.4426950408889634
登入後複製

27. Math.max(...values)

Returns the largest of zero or more numbers.

console.log(Math.max(1, 5, 3)); // 5
console.log(Math.max(-1, -5, -3)); // -1
登入後複製

28. Math.min(...values)

Returns the smallest of zero or more numbers.

console.log(Math.min(1, 5, 3)); // 1
console.log(Math.min(-1, -5, -3)); // -5
登入後複製

29. Math.PI

Returns the value of π, approximately 3.14159.

console.log(Math.PI); // 3.141592653589793
登入後複製

30. Math.pow(base, exponent)

Returns the value of base raised to the power of exponent.

console.log(Math.pow(2, 3)); // 8
console.log(Math.pow(5, 0)); // 1
登入後複製

31. Math.random()

Returns a pseudo-random number between 0 (inclusive) and 1 (exclusive).

console.log(Math.random()); // e.g., 0.237
登入後複製

32. Math.round(x)

Rounds x to the nearest integer.

console.log(Math.round(4.5)); // 5
console.log(Math.round(4.4)); // 4
登入後複製

33. Math.sign(x)

Returns the sign of a number, indicating whether the number is positive, negative, or zero.

console.log(Math.sign(-5)); // -1
console.log(Math.sign(0)); // 0
console.log(Math.sign(5)); // 1
登入後複製

34. Math.sin(x)

Returns the sine of x (where x is in radians).

console.log(Math.sin(0)); // 0
console.log(Math.sin(Math.PI / 2)); // 1
登入後複製

35. Math.sinh(x)

Returns the hyperbolic sine of x.

console.log(Math.sinh(0)); // 0
console.log(Math.sinh(1)); // 1.1752011936438014
登入後複製

36. Math.sqrt(x)

Returns the square root of x.

console.log(Math.sqrt(9)); // 3
console.log(Math.sqrt(16));

 // 4
登入後複製

37. Math.SQRT1_2

Returns the square root of 1/2, approximately 0.707.

console.log(Math.SQRT1_2); // 0.7071067811865476
登入後複製

38. Math.SQRT2

Returns the square root of 2, approximately 1.414.

console.log(Math.SQRT2); // 1.4142135623730951
登入後複製

39. Math.tan(x)

Returns the tangent of x (where x is in radians).

console.log(Math.tan(0)); // 0
console.log(Math.tan(Math.PI / 4)); // 1
登入後複製

40. Math.tanh(x)

Returns the hyperbolic tangent of x.

console.log(Math.tanh(0)); // 0
console.log(Math.tanh(1)); // 0.7615941559557649
登入後複製

41. Math.trunc(x)

Returns the integer part of a number by removing any fractional digits.

console.log(Math.trunc(4.9)); // 4
console.log(Math.trunc(-4.9)); // -4
登入後複製

以上是掌握 JavaScript 的數學物件:內建數學函數和屬性的綜合指南的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:dev.to
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!