JavaScript Math acosh() Method Last Updated : 12 Jul, 2024 Comments Improve Suggest changes Like Article Like Report Javascript Math.acosh() method is used to get the hyperbolic arc-cosine of a number. The hyperbolic arc-cosine is known by many names such as hyperbolic inverse cosine and acosh. It is the inverse of the hyperbolic cosine method i.e., The inverse hyperbolic cosine of any value say x is the value y for which the hyperbolic cosine of y is x.if y = acosh(x) then x = cosh(y) For all x≥1, we have acosh(x)=ln(x+√ x2-1 )Syntax:Math.acosh(x)Parameters: This method accepts a single parameter:x: Here x is a number whose hyperbolic arc-sine is going to be calculated.Example: Below is an example of the Math acosh( ) Method. JavaScript // Here different values is being used for // getting hyperbolic cosine method's values. console.log(Math.acosh(2)); console.log(Math.acosh(1)); console.log(Math.acosh(3)); console.log(Math.acosh(10)); Output1.3169578969248166 0 1.7627471740390859 2.993222846126381Example: Here output 0 is the hyperbolic arc-cosine of numbers. JavaScript // Here different values is being used for // getting hyperbolic cosine method's values. console.log(Math.acosh(5)); console.log(Math.acosh(11)); console.log(Math.acosh(1.5)); console.log(Math.acosh(0)); Output2.2924316695611777 3.088969904844603 0.9624236501192069 NaNWe 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 38.0Firefox 25.0Opera 8.0Safari 25.0 Comment More info K Kanchan_Ray Follow Improve Article Tags : Misc JavaScript Web Technologies javascript-math JavaScript-Methods +1 More Explore JavaScript BasicsIntroduction to JavaScript4 min readVariables and Datatypes in JavaScript6 min readJavaScript Operators5 min readControl Statements in JavaScript4 min readArray & StringJavaScript Arrays7 min readJavaScript Array Methods7 min readJavaScript Strings6 min readJavaScript String Methods9 min readFunction & ObjectFunctions in JavaScript5 min readJavaScript Function Expression3 min readFunction Overloading in JavaScript4 min readObjects in Javascript4 min readJavaScript Object Constructors4 min readOOPObject Oriented Programming in JavaScript3 min readClasses and Objects in JavaScript4 min readWhat Are Access Modifiers In JavaScript ?5 min readJavaScript Constructor Method7 min readAsynchronous JavaScriptAsynchronous JavaScript2 min readJavaScript Callbacks4 min readJavaScript Promise4 min readEvent Loop in JavaScript4 min readAsync and Await in JavaScript2 min readException HandlingJavascript Error and Exceptional Handling6 min readJavaScript Errors Throw and Try to Catch2 min readHow to create custom errors in JavaScript ?2 min readJavaScript TypeError - Invalid Array.prototype.sort argument1 min readDOMHTML DOM (Document Object Model)9 min readHow to select DOM Elements in JavaScript ?3 min readJavaScript Custom Events4 min readJavaScript addEventListener() with Examples9 min readAdvanced TopicsClosure in JavaScript4 min readJavaScript Hoisting6 min readJavascript Scope3 min readJavaScript Higher Order Functions7 min readDebugging in JavaScript4 min read Like