Esempio
Restituisce l'arcotangente di un numero specificato:
Math.atan(2);
Il risultato sarà:
1.1071487177940904
Prova tu stesso " Definizione e utilizzo
Il atan() restituisce l'arcotangente di un numero come un valore compreso tra -PI / 2 e PI / 2 radianti.
Supporto per il browser
metodo | |||||
---|---|---|---|---|---|
atan() | sì | sì | sì | sì | sì |
Sintassi
Math.atan( x )
valori dei parametri
Parameter | Description |
---|---|
x | Required. A number |
Dettagli tecnici
Valore di ritorno: | Un numero, da -PI / 2 a PI / 2, o NaN se il valore è vuoto |
---|---|
Versione JavaScript: | 1.0 |
