Math.asin()傳回反正弦值
- 詳細內容
- 分類:Javascript
- 發佈:2013-05-02, 週四 10:06
- 點擊數:2064
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
-1.5707963267948965
1.5707963267948965
0.5235987755982989
NaN
0.5235987755982989
關於Math物件的其他屬性與方法,請參考:數學物件 Math。
按個讚!~支持本站!~
FB推薦載入中
你可能會有興趣的文章
- Math.acos()傳回反餘弦值
- Math.abs()傳回絕對值
- 數學物件 Math
- Date.valueOf()傳回日期物件原始值
- Date.now()傳回由1970年現在時間的毫秒數
- Date.UTC()傳回由1970,1,1,0,0,0,0到指定UTC時間的毫秒數。