ES6 - Funzione Math.atan (x)
Restituisce la tangente inversa di x.
Sintassi
Math.atan(x)
Parametro
- X: rappresenta un numero
Esempio
console.log("---Math.atan()---")
console.log("Math.atan(0): "+Math.atan(0))
console.log("Math.atan(Math.SQRT1_2): "+Math.atan(Math.SQRT1_2))
Produzione
---Math.atan()---
Math.atan(0): 0
Math.atan(Math.SQRT1_2): 0.6154797086703874