Return a random whole number in a range.

This recipe will return a whole number between a lower and higher range. For a deeper discussion of this code, see this StackOverflow comment from Ionut Stan: http://stackoverflow.com/a/1527820/52160.

/**
 * Returns a random integer between min and max
 * Using Math.round() will give you a non-uniform distribution!
 */
function getRandomInt (min, max) {
    return Math.floor(Math.random() * (max - min + 1)) + min;
}
comments powered by Disqus