Skip to content

Instantly share code, notes, and snippets.

@gthrm
Created September 22, 2019 07:13
Show Gist options
  • Save gthrm/f679b5046a7c7ca1576a9e36dba9ea72 to your computer and use it in GitHub Desktop.
Save gthrm/f679b5046a7c7ca1576a9e36dba9ea72 to your computer and use it in GitHub Desktop.
randomInteger function
function randomInteger(min, max) {
// случайное число от min до (max+1)
let rand = min + Math.random() * (max + 1 - min);
return Math.floor(rand);
}
console.log( randomInteger(1, 3) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment