Reference > Methods
rand()
Definition
Double rand()
Description
Returns a random Double between 0.0 (inclusive) and 1.0 (exclusive), Note: this random is not secure.
Examples
| Double r1 = rand(); // r1 == 0.4607427377860531
Double r2 = rand(); // r2 == 0.18843613130943948
Double r3 = rand(); // r3 == 0.1474217012777327
|