Este método devuelve el arcotangente del cociente de sus argumentos. El método atan2 devuelve un valor numérico entre -pi y pi que representa el ángulo theta de un punto (x, y).
Sintaxis
Math.atan2(x,y)
Parámetro
- xey - representa un número
Ejemplo
console.log("---Math.atan2()---")
console.log("Math.atan2(0): "+Math.atan2(0,1))
console.log("Math.atan2(Math.SQRT1_2): "+Math.atan2(1,1))
Salida
---Math.atan2()---
Math.atan2(0): 0
Math.atan2(Math.SQRT1_2): 0.7853981633974483