Skip to content

Instantly share code, notes, and snippets.

@ssougnez
Created June 19, 2018 07:00
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 ssougnez/fa2df1c485131d9a9653199d54d75d88 to your computer and use it in GitHub Desktop.
Save ssougnez/fa2df1c485131d9a9653199d54d75d88 to your computer and use it in GitHub Desktop.
function *random(min, max) {
while (true) {
yield parseInt((Math.random() * max) + min);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment