Generate a random integer
npm install random-int
import randomInteger from 'random-int';
randomInteger(5);
//=> 3
randomInteger(10, 100);
//=> 54
Returns an integer from 0
to 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.
Type: number
Default: 0
Minimum integer to return.
Type: number
Default: 1
Maximum integer to return.
- 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