CoffeeScript Math - aleatório ()

Descrição

o random() método retorna um número aleatório entre 0 (inclusivo) e 1 (exclusivo).

Sintaxe

A seguir está a sintaxe de random()método de JavaScript. Podemos usar o mesmo método no código CoffeeScript.

Math.random ( x )

Exemplo

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

value = Math.random()
console.log "The first number is : " + value 
         
value = Math.random()
console.log "The second number is : " + value 
        
value = Math.random()
console.log "The third number is : " + value

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

c:\> coffee -c math_random.coffee

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

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

  value = Math.random();

  console.log("The first number is : " + value);

  value = Math.random();

  console.log("The second number is : " + value);

  value = Math.random();

  console.log("The third number is : " + value);


}).call(this);

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

c:\> coffee math_tan.coffee

Na execução, o arquivo CoffeeScript produz a seguinte saída.

The first number is : 0.44820353598333895
The second number is : 0.10985115729272366
The third number is : 0.6831563576124609