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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。