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.9136000036553588
Double r2 = rand(); // r2 == 0.7092843871908179
Double r3 = rand(); // r3 == 0.4807863584606118
|