下麵是Math asin()方法的示例。
- 例:
<script type="text/javascript"> document.write("When 1 is passed as a parameter:" + Math.asin(1)); </script>
- 輸出:
When 1 is passed as a parameter:1.5707963267948966
Math.asin()方法用於返回弧度數的反正弦值。 Math.asin()方法返回介於-pi /2和pi /2弧度之間的數值。 asin()是Math的靜態方法,因此,它始終用作Math.asin(),而不是用作創建的Math對象的方法。
Math.asin(x)=arcsin(x)=unique y
where y belongs to [-pi/2;pi/2]
such that sin(y)=x
用法:
Math.asin(value)
參數:此方法接受如上所述和以下描述的單個參數:
- value:此參數以弧度為單位保留要查找的反弧數。
返回值:Math.asin()方法返回以弧度為單位的給定數字的反正弦值。
以下示例說明了JavaScript中的Math asin()方法:
- 範例1:
Input:Math.asin(1) Output:1.5707963267948966
- 範例2:
Input:Math.asin(-1) Output:-1.5707963267948966
- 範例3:
Input:Math.asin(2) Output:NaN
- 範例4:
Input:Math.asin(0.5) Output:0.5235987755982989
上述方法的更多示例代碼如下:
程序1:
<script type="text/javascript">
document.write("When -1 is passed as a parameter:"
+ Math.asin(-1));
</script>
輸出:
When -1 is passed as a parameter:-1.5707963267948966
程序2:
<script type="text/javascript">
document.write("When 2 is passed as a parameter:"
+ Math.asin(2));
</script>
輸出:
When 2 is passed as a parameter:NaN
程序3:
<script type="text/javascript">
document.write("When 0.5 is passed as a parameter:"
+ Math.asin(0.5));
</script>
輸出:
When 0.5 is passed as a parameter:0.5235987755982989
支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Opera
- Safari
相關用法
- PHP asin( )用法及代碼示例
- p5.js asin()用法及代碼示例
- JavaScript Math cosh()用法及代碼示例
- JavaScript Math random()用法及代碼示例
- JavaScript Math round()用法及代碼示例
- JavaScript Math abs()用法及代碼示例
- JavaScript Math sqrt()用法及代碼示例
- JavaScript Math floor()用法及代碼示例
- JavaScript Math pow()用法及代碼示例
- JavaScript Math trunc()用法及代碼示例
- JavaScript Math exp()用法及代碼示例
- JavaScript Math log()用法及代碼示例
- JavaScript Math cos()用法及代碼示例
- JavaScript Math tan()用法及代碼示例
- JavaScript Math ceil()用法及代碼示例
- JavaScript Math sin()用法及代碼示例
- JavaScript Math min()用法及代碼示例
- JavaScript Math max()用法及代碼示例
- JavaScript Math acos()用法及代碼示例
- JavaScript Math atan()用法及代碼示例
注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 JavaScript Math asin() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。