--- title: Math.acosh() slug: Web/JavaScript/Reference/Global_Objects/Math/acosh tags: - JavaScript - Math - Method - Reference - Referencia - metodo translation_of: Web/JavaScript/Reference/Global_Objects/Math/acosh ---
A função Math.acosh() retorna o arco cosseno hiperbólico de um número, onde
Math.acosh(x)
x
The hyperbolic arc-cosine of the given number. If the number is less than 1, {{jsxref("NaN")}}.
O arco cosseno hiperbólico do número recebido. Se o número for menor que 1, {{jsxref("NaN")}} é retornado.
Por acosh()
ser um método estático de Math
, deve-se sempre usá-lo como Math.acosh()
, e não como um método de um objeto Math
que você criou.
Math.acosh()
Math.acosh(-1); // NaN Math.acosh(0); // NaN Math.acosh(0.5); // NaN Math.acosh(1); // 0 Math.acosh(2); // 1.3169578969248166
For values less than 1 Math.acosh()
returns {{jsxref("NaN")}}.
Para valores menores que 1, Math.acosh()
retornará {{jsxref("NaN")}}.
Para todo , temos . Dessa maneira, este comportamento pode ser emulado da seguinte maneira:
Math.acosh = Math.acosh || function(x) { return Math.log(x + Math.sqrt(x * x - 1)); };
Specification | Status | Comment |
---|---|---|
{{SpecName('ES6', '#sec-math.acosh', 'Math.acosh')}} | {{Spec2('ES6')}} | Definição inicial. |
{{SpecName('ESDraft', '#sec-math.acosh', 'Math.acosh')}} | {{Spec2('ESDraft')}} |
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
{{Compat("javascript.builtins.Math.acosh")}}