Math.acosh()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
La fonction Math.acosh()
renvoie l'arc cosinus hyperbolique d'un nombre.Elle est définie par :
Exemple interactif
Syntaxe
Math.acosh(x);
Paramètres
x
-
Un nombre.
Valeur de retour
L'arc cosinus hyperbolique du nombre en argument. Si le nombre est inférieur à 1, la valeur renvoyée sera NaN
.
Description
acosh
étant une méthode statique de Math
, il faut l'utiliser avec Math.acosh()
, plutôt qu'en faisant appel à une méthode d'un autre objet créé (Math
n'est pas un constructeur).
Exemple
Utiliser Math.acosh()
Math.acosh(-1); // NaN
Math.acosh(0); // NaN
Math.acosh(0.5); // NaN
Math.acosh(1); // 0
Math.acosh(2); // 1.3169578969248166
Pour les valeurs strictement inférieures à 1 Math.acosh
renvoie NaN
.
Prothèse d'émulation (polyfill)
Pour tout , , on peut donc émuler cette fonction avec le code suivant :
function acosh(x) {
return Math.log(x + Math.sqrt(x * x - 1));
}
Spécifications
Specification |
---|
ECMAScript Language Specification # sec-math.acosh |
Compatibilité des navigateurs
BCD tables only load in the browser