2 lines
83 B
CoffeeScript
2 lines
83 B
CoffeeScript
|
getRandomInt = (min, max) ->
|
||
|
Math.floor(Math.random() * (max - min + 1)) + min;
|