CoffeeScript Math - rond ()

La description

le round() accepte un nombre et renvoie la valeur d'un nombre arrondi à l'entier le plus proche

Syntaxe

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

Math.round ( x )

Exemple

L'exemple suivant montre l'utilisation du round()méthode dans CoffeeScript. Enregistrez ce code dans un fichier avec un nommath_round.coffee.

value = Math.round 0.5
console.log "The nearest integer to 0.5 is : " + value 

value = Math.round 20.7
console.log "The nearest integer to 20.7 is : " + value 
         
value = Math.round -20.3
console.log "The nearest integer to -20.3 is : " + value

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

c:\> coffee -c math_round.coffee

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

// Generated by CoffeeScript 1.10.0
(function() {
  var value;

  value = Math.round(0.5);

  console.log("The nearest integer to 0.5 is : " + value);

  value = Math.round(20.7);

  console.log("The nearest integer to 20.7 is : " + value);

  value = Math.round(-20.3);

  console.log("The nearest integer to -20.3 is : " + value);

}).call(this);

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

c:\> coffee math_round.coffee

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

The nearest integer to 0.5 is : 1
The nearest integer to 20.7 is : 21
The nearest integer to -20.3 is : -20