random
random( [x_number] ) =>x_result
Description
Returns a random integer between zero and a given number minus one.
If you call random with no arguments, it returns an integer that has all of its bits randomly set.
Arguments
Value Returned
Examples
random( 93 )
=> 26
random()
=> 2078917053
Related Topics
Return to top