[ Leksykon ] [ JavaScript ] [ Metody ] [ Właściwości ] [ Math() ]
Math.asinh()
[_] [A] [B] [C] [D] [E] [F] [G] [H] [I] [J] [K] [L] [M] [N] [O] [P] [Q] [R] [S] [T] [U] [V] [W] [X] [Y] [Z]
Przykłady:
console.log(Math.asinh(-Infinity)); // -Infinity
console.log(Math.asinh(-1)); // -0.881373587019543
console.log(Math.asinh(-0)); // -0
console.log(Math.asinh(0)); // 0
console.log(Math.asinh(1)); // 0.881373587019543
console.log(Math.asinh(2)); // 1.4436354751788103
console.log(Math.asinh(3)); // 1.8184464592320668
console.log(Math.asinh(Infinity)); // Infinity
Opis:
Metoda Math.asinh() statyczna zwraca odwrotny sinus hiperboliczny liczby. Parametr liczba. Zwracana wartość Odwrotny sinus hiperboliczny liczby.
Linki: