[ Leksykon ] [ JavaScript ] [ Metody ] [ Właściwości ] [ Math() ]
Math.sinh()
[_] [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.sinh(1)); // 1.1752011936438014
console.log(Math.sinh(-1)); // -1.1752011936438014
console.log(Math.sinh(2)); // 3.626860407847019
console.log(Math.sinh(-Infinity)); // -Infinity
console.log(Math.sinh(Infinity)); // Infinity
console.log(Math.sinh(-0)); // -0
console.log(Math.sinh(0)); // 0
Opis:
Metoda Math.sinh() statyczna zwraca sinus hiperboliczny liczby. Parametr liczba. Zwracana wartość sinus hiperboliczny parametru.
Zobacz też:
Math.acosh()
Math.asinh()
Math.atanh()
Math.cosh()
Math.tanh()
Linki: