Math.asin()傳回反正弦值

Javascript的Math.asin ()方法:

asin()方法是一個靜態方法,只能藉由Math.asin()來呼叫,asin()方法可以取得輸入參數的反正弦值。

asin是一種反三角函數,其定義請參考維基上的反三角函數

Math.asin()的語法:

Math.asin(x)

x:數值(number),範圍為-1~1,若超出範圍則傳回NaN。

傳回值:範圍為-pi/2~pi/2(弧度),若輸入參數超出範圍則傳回值會是NaN。

Math.asin()的範例:

<script type="text/javascript">
document.writeln(Math.asin(-15));
document.writeln("<br/>");
document.writeln(Math.asin(-1));
document.writeln("<br/>");
document.writeln(Math.asin(1));
document.writeln("<br/>");
document.writeln(Math.asin(0.5));
document.writeln("<br/>");
document.writeln(Math.asin("abc"));
document.writeln("<br/>");
document.writeln(Math.asin("0.5"));
</script>

Math.asin()的範例輸出:

NaN
-1.5707963267948965
1.5707963267948965
0.5235987755982989
NaN
0.5235987755982989

關於Math物件的其他屬性與方法,請參考:數學物件 Math

 
 

  按個讚!~支持本站!~

FB推薦載入中  

你可能會有興趣的文章