JavaScript tan() method
- Página anterior SQRT2
- Próxima página tanh()
- Voltar à página anterior Manual de Referência JavaScript Math
Definition and usage
tan()
The method returns a number representing the tangent of the angle.
Instance
Example 1
Returns the tangent of the number (angle):
Math.tan(90);
Example 2
Returns the tangent value 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). Multiply the angle by 0.017453293 (2PI/360) to convert it to radians. |
Detalhes técnicos
Retorno: | Número, representando a tangente do ângulo |
---|---|
Versão do JavaScript: | ECMAScript 1 |
Suporte ao navegador
Método | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
tan() | Suporte | Suporte | Suporte | Suporte | Suporte |
Páginas relacionadas
Tutorial:Matemática do JavaScript
- Página anterior SQRT2
- Próxima página tanh()
- Voltar à página anterior Manual de Referência JavaScript Math