JavaScript Math acosh() Method Last Updated : 26 May, 2023 Summarize Comments Improve Suggest changes Share Like Article Like Report The Javascript Math.acosh() function in Javascript is used to return the hyperbolic arc-cosine of a number. Math.acosh (x) = arcosh(x) = y ≧ 0 such that cosh (y)=x acosh() is a static method of Math, therefore it is always used as Math.acosh(), rather than as a method of a Math object created. Syntax: Math.acosh(value) Parameters: This function accepts a single parameter. value: Which is the number whose hyperbolic arc-cosine you want to know. Returns: It returns the hyperbolic arc-cosine of the given number and if the parameter passed is less than 1, it returns NaN. Example 1: When 1 is passed as a parameter. JavaScript <script type="text/javascript"> console.log("Output : " + Math.acosh(1)); </script> Output: Output : 0 Example 2: When 0 is passed as a parameter. JavaScript <script type="text/javascript"> console.log("Output : " + Math.acosh(0)); </script> Output: Output : NaN Example 3: When a number less than 0 is passed as a parameter. JavaScript <script type="text/javascript"> console.log("Output : " + Math.acosh(-1)); </script> Output: Output : NaN Example 4: When 2 is passed as a parameter. JavaScript <script type="text/javascript"> console.log("Output : " + Math.acosh(2)); </script> Output: Output : 1.3169578969248166 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: Google Chrome 1 and aboveInternet Explorer 3 and aboveFirefox 1 and aboveOpera 3 and aboveSafari 1 and above Comment More infoAdvertise with us Next Article C# | Math.Acos() Method S Shubrodeep Banerjee Follow Improve Article Tags : Misc JavaScript Web Technologies javascript-math JavaScript-Methods +1 More Practice Tags : Misc Similar Reads JavaScript Math acos() Method The Javascript Math.acos( ) method is used to return the arccosine of a number in radians. The Math.acos() method returns a numeric value between 0 and pi radians. The Math acos() is a static method of Math, therefore, it is always used as Math.acos(), rather than as a method of a Math object create 2 min read 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 atanh() Method The Javascript Math.atanh() method is used to return the hyperbolic arctangent of a number. The atanh() is a static method of Math, therefore it is always used as Math.atanh(), rather than as a method of a Math object created.Math.atanh (x) = arctanh(x) = y such that tanh (y) = x Syntax: Math.atanh( 3 min read C# | Math.Acos() Method Math.Acos() is an inbuilt Math class method which returns the angle whose cosine is given as a double value argument. If the argument is NaN, then the result will be NaN. Syntax: public static double Acos(double num) Parameter: num: It is the number that represents cosine and type of this parameter 2 min read JavaScript Math.atanh() Function The Javascript Math.atanh() function is an inbuilt function in JavaScript that is used to get the hyperbolic arctangent of a number. The hyperbolic arctangent is known by many names such as hyperbolic inverse tangent and atanh. It is the inverse of the hyperbolic tangent function i.e, The inverse hy 2 min read C# | Math.Sinh() Method Math.Sinh() is the inbuilt Math class method which returns the hyperbolic sine of a given double value argument(specified angle).Syntax: public static double Sinh(double num) Parameters: num: It is the number whose hyperbolic sine is to be returned and type of this parameter is System.Double. Return 2 min read Like