UNPKG

underscore

Version:

JavaScript's functional programming helper library.

9 lines (8 loc) 222 B
// Return a random integer between `min` and `max` (inclusive). export default function random(min, max) { if (max == null) { max = min; min = 0; } return min + Math.floor(Math.random() * (max - min + 1)); }