當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Javascript Math.asinh( )用法及代碼示例


Math.asinh()函數用於返回數字的雙曲反正弦。 asinh()是Math的靜態方法,因此始終用作Math.asinh(),而不是用作創建的數學對象的方法。

用法:

Math.asinh(value)

參數:該函數接受單個參數值,該值是您想知道其雙曲反正弦的數字。


返回:它返回給定數字的雙曲反正弦。

例子:

Input :Math.asinh(2)
Output:1.4436354751788103

Input :Math.asinh(0)
Output:0

Input :Math.asinh(-1)
Output:-0.881373587019543

下麵提供了Math.asinh()函數的代碼:

  • 範例1:
    <script type = "text/javascript"> 
     
       // 2 is passed as a parameter 
       document.write("Output:" + Math.asinh(2)); 
    </script>

    輸出:

    Output:1.4436354751788103
  • 範例2:
    <script type = "text/javascript"> 
     
       // 0 is passed as a parameter 
       document.write("Output:" + Math.asinh(0)); 
    </script>

    輸出:

    Output:0
  • 範例3:
    <script type = "text/javascript"> 
     
       // 1 is passed as a parameter 
       document.write("Output:" + Math.asinh(1)); 
    </script>

    輸出:

    Output:0.881373587019543
  • 範例4:
    <script type = "text/javascript"> 
     
       // -1 is passed as a parameter 
       document.write("Output:" + Math.asinh(-1)); 
    </script>

    輸出:

    Output:-0.881373587019543

支持的瀏覽器:下麵列出了JavaScript Math.asinh()函數支持的瀏覽器:

  • 穀歌瀏覽器38.0
  • Internet Explorer 12.0
  • Firefox 25.0
  • Opera 25.0
  • Safari 8.0



注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 Math.asinh() In JavaScript。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。