CoffeeScript Math - random ()

Descrizione

Il random() restituisce un numero casuale compreso tra 0 (incluso) e 1 (esclusivo).

Sintassi

Di seguito è riportata la sintassi di random()metodo di JavaScript. Possiamo usare lo stesso metodo nel codice CoffeeScript.

Math.random ( x )

Esempio

L'esempio seguente mostra l'utilizzo di random()metodo in CoffeeScript. Salva questo codice in un file con 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

Apri il command prompt e compila il file .coffee come mostrato di seguito.

c:\> coffee -c math_random.coffee

Durante la compilazione, ti dà il seguente 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);

Ora apri il file command prompt di nuovo ed eseguire il file CoffeeScript come mostrato di seguito.

c:\> coffee math_tan.coffee

All'esecuzione, il file CoffeeScript produce il seguente output.

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