CoffeeScript Math - round ()
Descrição
o round() método aceita um número e retorna o valor de um número arredondado para o inteiro mais próximo
Sintaxe
A seguir está a sintaxe de round()método de JavaScript. Podemos usar o mesmo método no código CoffeeScript.
Math.round ( x )
Exemplo
O exemplo a seguir demonstra o uso do round()método em CoffeeScript. Salve este código em um arquivo com o 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
Abra o command prompt e compilar o arquivo .coffee conforme mostrado abaixo.
c:\> coffee -c math_round.coffee
Na compilação, ele fornece o seguinte 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);
Agora, abra o command prompt novamente e execute o arquivo CoffeeScript conforme mostrado abaixo.
c:\> coffee math_round.coffee
Na execução, o arquivo CoffeeScript produz a seguinte saída.
The nearest integer to 0.5 is : 1
The nearest integer to 20.7 is : 21
The nearest integer to -20.3 is : -20