| title | ms.custom | ms.date | ms.prod | ms.reviewer | ms.suite | ms.technology | ms.tgt_pltfrm | ms.topic | dev_langs | ms.assetid | caps.latest.revision | author | ms.author | manager | ||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Math.acosh Function (JavaScript) | Microsoft Docs |
01/18/2017 |
windows-client-threshold |
|
language-reference |
|
881dd2a0-36a5-403b-a3dc-523d8e1e1317 |
3 |
mikejo5000 |
mikejo |
ghogen |
Returns the hyperbolic arccosine (or inverse hyperbolic cosine) of a number.
Math.acosh(number)
The required number argument is a numeric expression.
The inverse hyperbolic cosine of the number argument, in radians.
The following code shows how to use the acosh function.
var v1 = Math.acosh(3);
vary v2 = Math.acosh(-1);
document.write(v1);
document.write("</br>");
document.write(v2);
// Output:
// 1.762747174039086
// NaN
Applies To: Math Object
[!INCLUDEjsv12]
Math.acos Function
Math.asin Function
Math.atan Function
Math.cos Function
Math.sin Function
Math.tan Function
Math Object