Matemáticas CoffeeScript - tan ()
Descripción
los tan() El método acepta un número y devuelve su valor de tangente.
Sintaxis
A continuación se muestra la sintaxis de tan()método de JavaScript. Podemos usar el mismo método en el código CoffeeScript.
Math.tan ( x )
Ejemplo
El siguiente ejemplo demuestra el uso de la tan()método en CoffeeScript. Guarde este código en un archivo con nombremath_tan.coffee.
value = Math.tan -30
console.log "The tangent value of -30 is : " + value
value = Math.tan 90
console.log "The tangent value of 90 is : " + value
value = Math.tan(2*Math.PI/180)
console.log "The tangent value of 2*Math.PI/180 is : " + value
Abre el Node.js command prompt y compile el archivo .coffee como se muestra a continuación.
c:\> coffee -c math_tan.coffee
Al compilar, le da el siguiente JavaScript.
// Generated by CoffeeScript 1.10.0
(function() {
var value;
value = Math.tan(-30);
console.log("The tangent value of -30 is : " + value);
value = Math.tan(90);
console.log("The tangent value of 90 is : " + value);
value = Math.tan(2 * Math.PI / 180);
console.log("The tangent value of 2*Math.PI/180 is : " + value);
}).call(this);
Ahora, abre el Node.js command prompt de nuevo y ejecute el archivo CoffeeScript como se muestra a continuación.
c:\> coffee math_tan.coffee
Al ejecutarse, el archivo CoffeeScript produce la siguiente salida.
The tangent value of -30 is : 6.405331196646276
The tangent value of 90 is : -1.995200412208242
The tangent value of 2*Math.PI/180 is : 0.03492076949174773