Saturday, December 28, 2024
Google search engine
HomeLanguagesJavascriptJavaScript Math acosh() Method

JavaScript Math acosh() Method

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 above
  • Internet Explorer 3 and above
  • Firefox 1 and above
  • Opera 3 and above
  • Safari 1 and above
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

RELATED ARTICLES

Most Popular

Recent Comments