CoffeeScript Math - atan ()
Descrizione
Il atan()accetta un numero e restituisce il suo valore arcotangente in radianti. Questo metodo restituisce un valore numerico compreso tra -pi / 2 e pi / 2 radianti.
Sintassi
Di seguito è riportata la sintassi di atan()metodo di JavaScript. Possiamo usare lo stesso metodo nel codice CoffeeScript.
Math.atan( x )
Esempio
L'esempio seguente mostra l'utilizzo di atan()metodo in CoffeeScript. Salva questo codice in un file con nomemath_atan.coffee.
value = Math.atan -1
console.log "The arc tangent value of -1 is : " + value
value = Math.atan null
console.log "The arc tangent value of null is : " + value
value = Math.atan 20
console.log "The arc tangent value of 20 is : " + value
Apri il command prompt e compila il file .coffee come mostrato di seguito.
c:\> coffee -c math_atan.coffee
Durante la compilazione, ti dà il seguente JavaScript.
// Generated by CoffeeScript 1.10.0
(function() {
var value;
value = Math.atan(-1);
console.log("The arc tangent value of -1 is : " + value);
value = Math.atan(null);
console.log("The arc tangent value of null is : " + value);
value = Math.atan(20);
console.log("The arc tangent value of 20 is : " + value);
}).call(this);
Ora apri il file command prompt di nuovo ed eseguire il file CoffeeScript come mostrato di seguito.
c:\> coffee math_atan.coffee
All'esecuzione, il file CoffeeScript produce il seguente output.
The arc tangent value of -1 is : -0.7853981633974483
The arc tangent value of null is : 0
The arc tangent value of 20 is : 1.5208379310729538