Skip to content

Instantly share code, notes, and snippets.

@designeng
Created October 11, 2014 18:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save designeng/1ff2d56fb632a7165048 to your computer and use it in GitHub Desktop.
Save designeng/1ff2d56fb632a7165048 to your computer and use it in GitHub Desktop.
getRandomInt = (min, max) ->
return Math.floor(Math.random() * (max - min + 1)) + min
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment