CoffeeScript Math - rotondo ()

Descrizione

Il round() il metodo accetta un numero e restituisce il valore di un numero arrotondato al numero intero più vicino

Sintassi

Di seguito è riportata la sintassi di round()metodo di JavaScript. Possiamo usare lo stesso metodo nel codice CoffeeScript.

Math.round ( x )

Esempio

L'esempio seguente mostra l'utilizzo di round()metodo in CoffeeScript. Salva questo codice in un file con nomemath_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

Apri il command prompt e compila il file .coffee come mostrato di seguito.

c:\> coffee -c math_round.coffee

Durante la compilazione, ti dà il seguente JavaScript.

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

Ora apri il file command prompt di nuovo ed eseguire il file CoffeeScript come mostrato di seguito.

c:\> coffee math_round.coffee

All'esecuzione, il file CoffeeScript produce il seguente output.

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