Resum
La funció Math.atan()
retorna l'arctangent (en radians) d'un nombre, és a dir:
Sintaxi
Math.atan(x)
Paràmetres
x
- Un nombre.
Descripció
El mètode Math.atan()
retorna un valor numèric entre i radians.
Degut a que atan()
és un mètode estàtic de Math
, sempre s'utilitza com a Math.atan()
, en comptes de com a mètode d'una instància de Math
(Math
no és un constructor).
Exemples
Exemple: Utilitzar Math.atan()
Math.atan(1); // 0.7853981633974483 Math.atan(0); // 0
Especificacions
Especificació | Estat | Comentaris |
---|---|---|
ECMAScript 1a Edició. | Standard | Definició inicial. Implementat a JavaScript 1.0. |
ECMAScript 5.1 (ECMA-262) The definition of 'Math.atan' in that specification. |
Standard | |
ECMAScript 6 (ECMA-262) The definition of 'Math.atan' in that specification. |
Release Candidate |
Compatibilitat amb navegadors
Característica | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Suport bàsic | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Característica | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Suport bàsic | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |