CoffeeScript Math - sqrt ()

Descrição

o sqrt()método aceita um número e retorna seu valor de raiz quadrada. Se o valor de um número for negativo, sqrt retornará NaN.

Sintaxe

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

Math.sqrt ( x )

Exemplo

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

value = Math.sqrt 0.5
console.log "The square root of 0.5 is : " + value 

value = Math.sqrt 81
console.log "The square root of 81 is : " + value 

         
value = Math.sqrt 13
console.log "The square root of 13 is : " + value 
 
value = Math.sqrt -4
console.log "The square root of -4 is : " + value

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

c:\> coffee -c math_sqrt.coffee

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

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

  value = Math.sqrt(0.5);

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

  value = Math.sqrt(81);

  console.log("The square root of 81 is : " + value);

  value = Math.sqrt(13);

  console.log("The square root of 13 is : " + value);

  value = Math.sqrt(-4);

  console.log("The square root of -4 is : " + value);
  
}).call(this);

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

c:\> coffee math_sqrt.coffee

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

The square root of 0.5 is : 0.7071067811865476
The square root of 81 is : 9
The square root of 13 is : 3.605551275463989
The square root of -4 is : NaN