blob: 12b35857d3e33bc020f031b31a561990b15050bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
---
title: Math.tan()
slug: Web/JavaScript/Reference/Global_Objects/Math/tan
tags:
- JavaScript
- Math
- Méthode
- Reference
translation_of: Web/JavaScript/Reference/Global_Objects/Math/tan
original_slug: Web/JavaScript/Reference/Objets_globaux/Math/tan
---
{{JSRef}}
La fonction **`Math.tan()`** renvoie la tangente d'un nombre exprimant un angle en radians.
{{EmbedInteractiveExample("pages/js/math-tan.html")}}
## Syntaxe
Math.tan(x)
### Paramètres
- `x`
- : Un nombre qui représente un angle en radians.
### Valeur de retour
La tangente de l'angle fourni en argument (exprimé en radians).
## Description
La méthode `Math.tan()` renvoie une valeur numérique qui représente la tangente d'un angle.
`tan()` est une méthode statique de `Math` et doit toujours être utilisée avec la syntaxe `Math.tan()`, elle ne doit pas être utilisée comme méthode d'un autre objet qui aurait été créé (`Math` n'est pas un constructeur).
## Exemples
### Utiliser `Math.tan()`
```js
Math.tan(1); // 1.5574077246549023
```
`Math.tan()` considère un argument exprimé en radians. Cependant, on peut vouloir travailler avec des valeurs en degrés. Pour cela, on pourra utiliser la fonction suivante qui calcule la tangente après avoir converti l'argument en radians :
```js
function getTanDeg(deg) {
var rad = deg * Math.PI/180;
return Math.tan(rad);
}
```
## Spécifications
| Spécification | État | Commentaires |
| -------------------------------------------------------------------- | ---------------------------- | ----------------------------------------------------- |
| {{SpecName('ES1')}} | {{Spec2('ES1')}} | Définition initiale. Implémentée avec JavaScript 1.0. |
| {{SpecName('ES5.1', '#sec-15.8.2.18', 'Math.tan')}} | {{Spec2('ES5.1')}} | |
| {{SpecName('ES6', '#sec-math.tan', 'Math.tan')}} | {{Spec2('ES6')}} | |
| {{SpecName('ESDraft', '#sec-math.tan', 'Math.tan')}} | {{Spec2('ESDraft')}} | |
## Compatibilité des navigateurs
{{Compat("javascript.builtins.Math.tan")}}
## Voir aussi
- {{jsxref("Math.acos()")}}
- {{jsxref("Math.asin()")}}
- {{jsxref("Math.atan()")}}
- {{jsxref("Math.atan2()")}}
- {{jsxref("Math.cos()")}}
- {{jsxref("Math.sin()")}}
|