Package Exports
- random-int
Readme
random-int
Generate a random integer
Install
npm install random-intUsage
import randomInteger from 'random-int';
randomInteger(5);
//=> 3
randomInteger(10, 100);
//=> 54API
randomInteger(maximum?)
Returns an integer from 0 to maximum.
randomInteger(minimum, maximum)
Returns an integer from minimum to maximum.
If minimum is greater than maximum, the values are swapped to return an integer from the lower value to the higher value.
minimum
Type: number
Default: 0
Minimum integer to return.
maximum
Type: number
Default: 1
Maximum integer to return.
Related
- random-float - Generate a random float
- random-item - Get a random item from an array
- random-object-key - Get a random key from an object
- random-object-value - Get a random value from an object
- unique-random - Generate random numbers that are consecutively unique
- unique-random-array - Get consecutively unique elements from an array
- crypto-random-string - Generate a cryptographically strong random string