Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save YurePereira/e49c1b696f2223154082391101469fe1 to your computer and use it in GitHub Desktop.

Select an option

Save YurePereira/e49c1b696f2223154082391101469fe1 to your computer and use it in GitHub Desktop.
Ramdom Number Generator
/**
* Number Generator JavaScript
*
* @param min {Integer} Number start
* @param max {Integer] Number finish
*
* @return {Integer}
*
*/
function randomNumber(min, max) {
return Math.floor(((max + 1) - min) * Math.random() + min);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment