您好,登錄后才能下訂單哦!
怎么理解JavaScript math,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
JavaScript的Math對象允許你對數字進行數學操作。上篇文章我們已經介紹了基本的Math函數用法,這篇文章我們來講講三角函數還有部分其他函數的用法。
一、三角函數
1. Math.sin()
Math.sin(x) 返回角度x的正弦值(-1到1之間)(以弧度)。
如果你想使用角度而不是弧度,你必須轉換為弧度。
Angle in radians = Angle in degrees x PI / 180。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>項目</title> </head> <body style="background-color: aqua;"> <h2>JavaScript Math.sin()</h2> <p>Math.sin(x) 返回x的正弦值:</p> <p>角弧度 = (度角) * PI / 180.</p> <p id="demo"></p> <script> document.getElementById("demo").innerHTML = "90 度的正弦值是:" + Math.sin(90 * Math.PI / 180); </script> </body> </html>
2. Math.cos()
Math.cos(x) 返回x的余弦值(-1到1之間)(以弧度)。
如果你想使用角度而不是弧度,你必須轉換為弧度。
Angle in radians = Angle in degrees x PI / 180。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>項目</title> </head> <body style="background-color: aqua;"> <h2>JavaScript Math.cos()</h2> <p>Math.cos(x) 返回x的余弦值(以弧度):</p> <p>角弧度 = (度角) * PI / 180.</p> <p id="demo"></p> <script> document.getElementById("demo").innerHTML = "0度的余弦值是:" + Math.cos(0 * Math.PI / 180); </script> </body> </html>
3. 其他函數
1. Math.min()
Math.min() 和 Math.max() 可用于在參數列表中查找最低或最高值。
<script> document.getElementById("demo").innerHTML = Math.min(0, 150, 30, 20, -8, -200); // returns -200 </script>
2. Math.max()
<script> document.getElementById("demo").innerHTML = Math.max(0, 150, 30, 20, -8, -200); </script>
二、Math 屬性 (常量)
JavaScript 提供8個可以被Math對象訪問的數學常數:(來源百度)。
Math.E // returns Euler's number Math.PI // returns PI Math.SQRT2 // returns the square root of 2 Math.SQRT1_2 // returns the square root of 1/2 Math.LN2 // returns the natural logarithm of 2 Math.LN10 // returns the natural logarithm of 10 Math.LOG2E // returns base 2 logarithm of E Math.LOG10E // returns base 10 logarithm of E
從最基本的函數開始,講解Math函數中常見的方法,有三角函數方法,還有其他的一些常見的函數,都做了詳細的講解。用大量的案例進行分析,對Math函數如何去運用這些方法函數,以及在實際運用中遇到難點都做了詳細講解。關于怎么理解JavaScript math問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。