当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript Math asin()用法及代码示例


下面是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




相关用法


注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 JavaScript Math asin() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。