Descripción
Este método devuelve el arcotangente en radianes de un número. El método atan devuelve un valor numérico entre -pi / 2 y pi / 2 radianes.
Sintaxis
Su sintaxis es la siguiente:
Math.atan( x ) ;
Detalles de los parámetros
x - Un numero.
Valor devuelto
Devuelve el arco tangente en radianes de un número.
Ejemplo
Pruebe el siguiente programa de ejemplo.
<html>
<head>
<title>JavaScript Math atan() Method</title>
</head>
<body>
<script type = "text/javascript">
var value = Math.atan(-1);
document.write("First Test Value : " + value );
var value = Math.atan(.5);
document.write("<br />Second Test Value : " + value );
value = Math.atan(30);
document.write("<br />Third Test Value : " + value );
var value = Math.atan("string");
document.write("<br />Fourth Test Value : " + value );
</script>
</body>
</html>
Salida
First Test Value : -0.7853981633974483
Second Test Value : 0.4636476090008061
Third Test Value : 1.5374753309166493
Fourth Test Value : NaN