The minimum value to pick.
The maximum value to pick.
A random integer between min and max.
import { getRandomInteger } from '@untemps/utils/number/getRandomInteger'const min = 0const max = 100getRandomInteger(min, max) // 42 Copy
import { getRandomInteger } from '@untemps/utils/number/getRandomInteger'const min = 0const max = 100getRandomInteger(min, max) // 42
The minimum value to pick.