Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 271 Bytes

random.md

File metadata and controls

12 lines (8 loc) · 271 Bytes

Back to reference

random(low, high)

Returns a random number between low and high.

Example:

Get a random number between 20 and 50. The result will be something like 38.519687323693304.

let n = gmynd.random(20, 50);