JavaScript Math.asinh() Method Last Updated : 02 Jan, 2023 Comments Improve Suggest changes Like Article Like Report The Javascript Math.asinh() function is used to return the hyperbolic arc-sine of a number. The asinh() is a static method of Math, therefore it is always used as Math.asinh(), rather than as a method of a math object created. Syntax: Math.asinh(value) Parameter: This function accepts a single parameter value which is the number whose hyperbolic arc-sine you want to know. Returns: It returns the hyperbolic arc-sine of the given number. Below are some examples of the Math.asinh() function: Example 1: This example shows the hyperbolic arc-sine when 2 is passed as a parameter. JavaScript <script type="text/javascript"> // 2 is passed as a parameter console.log("Output : " + Math.asinh(2)); </script> Output: Output : 1.4436354751788103 Example 2: This example shows the hyperbolic arc-sine when 0 is passed as a parameter. JavaScript <script type = "text/javascript"> // 0 is passed as a parameter console.log("Output : " + Math.asinh(0)); </script> Output: Output : 0 Example 3: This example shows the hyperbolic arc-sine when 1 is passed as a parameter. JavaScript <script type = "text/javascript"> // 1 is passed as a parameter console.log("Output : " + Math.asinh(1)); </script> Output: Output : 0.881373587019543 Example 4: This example shows the hyperbolic arc-sine when -1 is passed as a parameter. JavaScript <script type = "text/javascript"> // -1 is passed as a parameter console.log("Output : " + Math.asinh(-1)); </script> Output: Output : -0.881373587019543 We have a complete list of Javascript Math Objects methods, to check those please go through this Javascript Math Object Complete reference article. Supported Browsers: The browsers supported by JavaScript Math.asinh( ) function are listed below: Google Chrome 38.0Internet Explorer 12.0Firefox 25.0Opera 25.0Safari 8.0 Comment More infoAdvertise with us Next Article JavaScript Math asin() Method S Shubrodeep Banerjee Follow Improve Article Tags : JavaScript Web Technologies javascript-math JavaScript-Methods Similar Reads JavaScript Math asinh() Method JavaScript Math.asinh() method is used to get the hyperbolic arc-sine of a number. The hyperbolic arc-sine is known by many names such as hyperbolic inverse sine and asinh. It is the inverse of the hyperbolic sine function i.e., The inverse hyperbolic sine of any value says x is the value y for whic 3 min read JavaScript Math asin() Method The Math.asin( ) method is used to return the arcsine of a number in radians. The Math.asin() method returns a numeric value between -pi/2 and pi/2 radians. The asin() is a static method of Math, therefore, it is always used as Math.asin(), rather than as a method of a Math object created.Math.asin( 2 min read JavaScript Math sinh() Method The JavaScript Math.sinh() is an inbuilt method in JavaScript that is used to calculate the value of the hyperbolic sine of a number. Syntax:Math.sinh(p) Examples:Input : Math.sinh(0) Output : 0 Explanation: Here formula for calculating the hyperbolic sine of any number is: The number e is a mathema 4 min read StrictMath asin() Method in Java With Examples The java.lang.StrictMath.asin() is an inbuilt method of StrictMath class which is used to return the arc sine of a specified value. The returned angle is in within the range of -pi/2 and pi/2. The method gives rise to two special results: If the absolute value of the argument is greater than 1 or th 2 min read Java Math Class Java.lang.Math Class methods help to perform numeric operations like square, square root, cube, cube root, exponential and trigonometric operations.Declarationpublic final class Math extends Object Methods of Math Class in JavaMath class consists of methods that can perform mathematical operations a 7 min read Java Math asin() method with Example The asin() method of java.lang.Math class, computes the arc sine also called as an inverse of a sine of a given value. This method is useful when we have the sine of an angle and we need to find the angle. This method returns the arc sine of an angle in between -pi/2 and pi/2.If the argument is NaN 2 min read Like