CoffeeScript Math - aleatorio ()

Descripción

los random() El método devuelve un número aleatorio entre 0 (inclusive) y 1 (exclusivo).

Sintaxis

A continuación se muestra la sintaxis de random()método de JavaScript. Podemos usar el mismo método en el código CoffeeScript.

Math.random ( x )

Ejemplo

El siguiente ejemplo demuestra el uso de la random()método en CoffeeScript. Guarde este código en un archivo con nombremath_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

Abre el command prompt y compile el archivo .coffee como se muestra a continuación.

c:\> coffee -c math_random.coffee

Al compilar, le da el siguiente 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);

Ahora, abre el command prompt de nuevo y ejecute el archivo CoffeeScript como se muestra a continuación.

c:\> coffee math_tan.coffee

Al ejecutarse, el archivo CoffeeScript produce la siguiente salida.

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