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.9024996168050095
Double r2 = rand(); // r2 == 0.4959001373853178
Double r3 = rand(); // r3 == 0.359796649282364
|