JavaScript Math(算數) 對象

JavaScript Math 物件

Math 物件用於在 JavaScript 進行常見的數學計算。

與 String、Date 物件不同的是,Math 物件並不是物件的類,沒有建構子 Math(),因此無需建立 Math 物件而可以直接使用 Math 物件。同樣的,Math 物件內的方法也是靜態方法,可以透過 Math.function 的方式直接使用。

Math 物件屬性

JavaScript 提供8 種Math 物件的屬性,表示一些常用的算術值:


屬性          說明


Math.E    算術常數e,即自然對數的底數(約等於2.718)   1

C .LN2    2 的自然對數(約等於0.693)    

Math.LN10    10 的自然對數(約等於2.302)    

#Math.LOG2E  約等於1.414)    

Math.LOG10E    以10 為底的e 的對數(約等於0.434)    
Math.PI    圓周率(約等於3.14159)

Math.PI     圓周率(約等於3.1419)

Math. SQRT1_2    2 的平方根的倒數(約等於0.707)    Math.SQRT2    2 的平方根(約等於1.414)    

使用Math 的屬性

Math 物件上述的屬性可以直接使用:

<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8"> 
<title>php中文网(php.cn)</title> 
<script type="text/javascript">
      var pi = Math.PI;
    document.write(pi);
</script>
</head>
<body>
</body>
</html>
執行此例子,輸出:

3.141592653589793

#算術方法

除了可被Math 物件存取的算數值以外,還有幾個函數(方法)可以使用。

下面的範例使用了 Math 物件的 round 方法對一個數進行四捨五入。

###document.write(Math.round(4.7));#########上面的程式碼輸出為:#########5##### #####下面的範例使用了Math 物件的random() 方法來傳回一個介於0 和1 之間的隨機數:#########document.write(Math.random()) ;#########上面的程式碼輸出為:###

0.897235837765038

下面的範例使用了Math 物件的floor() 方法和random() 來傳回一個介於0 和11 之間的隨機數:

document.write(Math.floor(Math.random()*11));

上面的程式碼輸出為:

##2

繼續學習
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> <script type="text/javascript"> document.write( Math.round(Math.E) + "<br />" ); document.write(Math.round(0.3) + "<br />") document.write( Math.round(0.9) + "<br />" ); document.write( Math.round(-10.5) + "<br />" ); document.write( Math.round(10.5) ); </script> </head> <body> </body> </html>