JavaScript | Math.cosh() function
Math.cosh() is an inbuilt function in JavaScript which is used to calculate the value of hyperbolic cosine of a number.
Syntax:
Math.cosh(p)
- Here the parameter p is a number for which the value of hyperbolic cosine is going to be calculated.
- It returns the calculated value of hyperbolic cosine of the number.
Parameter:
Return value:
Examples:
Input: Math.cosh(0) Output: 1
Explanation:
Here formula for calculating hyperbolic cosine of any number is : The number e is a mathematical constant having an approximate value equal to 2.718.
In the same way hyperbolic cosine of any number can be calculated just after replacing p with the desired number.
Input: Math.cosh(12) Output: 81377.39571257407
Explanation:
Here same as above calculation, when we put 12 instead of p then the value becomes as output shown above.
Let’s see some JavaScript code:
// Printing hyperbolic cosine of some numbers // taken as paramter of Math.cosh() function. console.log(Math.cosh(0)); console.log(Math.cosh(1)); console.log(Math.cosh(0)); console.log(Math.cosh(22)); console.log(Math.cosh(-2)); console.log(Math.cosh(4)); |
Output:
> 1 > 1.5430806348152437 > 1 > 1792456423.065796 > 3.7621956910836314 > 27.308232836016487
Errors and Exceptions:
- It is an error case because complex number can not be taken as the parameter of the function only integer value can be taken as the parameter.
// complex number can not be calculated as the hyperbolic cosine.console.log(Math.cosh(1 + 2i));chevron_rightfilter_noneOutput:
Error: Invalid or unexpected token
- Other than integer nothing is accepted as the parameter of the function that is why here string as the parameter gives NaN i.e, not a number.
// Any string value as the parameter of the function// gives NaN i.e, not a number// because only number can be used as the parameters.console.log(Math.cosh("geeksforgeeks"));console.log(Math.cosh("gfg"));chevron_rightfilter_noneOutput:
> NaN > NaN
Application:
- Its practical application is that whenever we need to find the value of hyperbolic cosine of a number that time we take the help of Math.cosh() function in JavaScript.
// Printing hyperbolic cosine of some numbers from 0 to 9// taken as paramter of Math.cosh() function.for(i = 0; i < 10; i++) {console.log(Math.cosh(i));+"<br>";}chevron_rightfilter_noneOutput:
> 1 > 1.5430806348152437 > 3.7621956910836314 > 10.067661995777765 > 27.308232836016487 > 74.20994852478785 > 201.7156361224559 > 548.317035155212 > 1490.479161252178 > 4051.5420254925943
Recommended Posts:
- JavaScript | Math.E() function
- JavaScript | toString( ) function
- JavaScript | toFixed( ) Function
- Javascript | Number() Function
- JavaScript | toPrecision( ) Function
- JavaScript | String() Function
- JavaScript | toExponential() Function
- JavaScript | Math.pow( ) Function
- JavaScript | Math.abs( ) function
- JavaScript | Array every() function
- JavaScript | Function Apply
- JavaScript | Function Definitions
- JavaScript | Function Invocation
- JavaScript | Symbol.for() function
- JavaScript | Array some() function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



