JavaScript tan() method
- Poprzednia strona SQRT2
- Następna strona tanh()
- Wróć do poprzedniego poziomu Podręcznik referencyjny JavaScript Math
Definition and usage
tan()
The method returns a number representing the tangent of the angle.
Example
Example 1
Returns the tangent of a number (angle):
Math.tan(90);
Example 2
Returns the tangent of different angles:
var a = Math.tan(90); var b = Math.tan(-90); var c = Math.tan(45); var d = Math.tan(60);
Syntax
Math.tan(x)
Parameter value
Parameter | Description |
---|---|
x |
Required. Number. Represents the angle (in radians). Multiplying the angle by 0.017453293 (2PI/360) converts it to radians. |
Szczegóły techniczne
Wartość zwracana: | Wartość liczby, która reprezentuje tangens kąta |
---|---|
Wersja JavaScript: | ECMAScript 1 |
Obsługa przeglądarek
Metoda | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
tan() | Wsparcie | Wsparcie | Wsparcie | Wsparcie | Wsparcie |
Strony związane
Tutorial:Matematyka JavaScript
- Poprzednia strona SQRT2
- Następna strona tanh()
- Wróć do poprzedniego poziomu Podręcznik referencyjny JavaScript Math