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.27861572124299794
Double r2 = rand(); // r2 == 0.9518038340279266
Double r3 = rand(); // r3 == 0.10989608558351216
|