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.32919019129976346
Double r2 = rand(); // r2 == 0.949803476451763
Double r3 = rand(); // r3 == 0.5987459741128541
|