CoffeeScript Math - sin ()

Descrição

o sin() método aceita um número e retorna seu valor seno que está entre -1 e 1.

Sintaxe

Dada a seguir é a sintaxe de sin()método de JavaScript. Podemos usar o mesmo método no código CoffeeScript.

Math.sin( x )

Exemplo

O exemplo a seguir demonstra o uso do sin()método em CoffeeScript. Salve este código em um arquivo com o nomesin.coffee.

value = Math.sin 90
console.log "The sine value of 90 is : " + value 
         
value = Math.sin 0.5
console.log "The sine value of 0.5 is : " + value 
         
value = Math.sin 2*Math.PI/2
console.log "The sine value of 2*Math.PI/2 is : " + value

Abra o Node.js command prompt e compilar o arquivo .coffee conforme mostrado abaixo.

c:\> coffee -c math_sin.coffee

Na compilação, ele fornece o seguinte JavaScript.

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

  value = Math.sin(90);

  console.log("The sine value of 90 is : " + value);

  value = Math.sin(0.5);

  console.log("The sine value of 0.5 is : " + value);

  value = Math.sin(2 * Math.PI / 2);

  console.log("The sine value of 2*Math.PI/2 is : " + value);

}).call(this);

Agora, abra o command prompt novamente e execute o arquivo CoffeeScript conforme mostrado abaixo.

c:\> coffee math_sin.coffee

Ao ser executado, o arquivo CoffeeScript produz a seguinte saída.

The sine value of 90 is : 0.8939966636005579
The sine value of 0.5 is : 0.479425538604203
The sine value of 2*Math.PI/2 is : 1.2246467991473532e-16