CoffeeScript Math - tan ()

La description

le tan() accepte un nombre et renvoie sa valeur tangente.

Syntaxe

Voici la syntaxe de tan()méthode de JavaScript. Nous pouvons utiliser la même méthode dans le code CoffeeScript.

Math.tan ( x )

Exemple

L'exemple suivant montre l'utilisation du tan()méthode dans CoffeeScript. Enregistrez ce code dans un fichier avec un nommath_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

Ouvrez le Node.js command prompt et compilez le fichier .coffee comme indiqué ci-dessous.

c:\> coffee -c math_tan.coffee

Lors de la compilation, il vous donne le JavaScript suivant.

// 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);

Maintenant, ouvrez le Node.js command prompt à nouveau et exécutez le fichier CoffeeScript comme indiqué ci-dessous.

c:\> coffee math_tan.coffee

Lors de l'exécution, le fichier CoffeeScript produit la sortie suivante.

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