Skip to content

Instantly share code, notes, and snippets.

@AliwerErgashev
Created November 28, 2018 16:07
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 AliwerErgashev/eb0cc697b3b8fe99a3b5c098002bcdd1 to your computer and use it in GitHub Desktop.
Save AliwerErgashev/eb0cc697b3b8fe99a3b5c098002bcdd1 to your computer and use it in GitHub Desktop.
function randomArray(length, min, max) {
return new Array(length).fill(0).map(function(n) {
return Math.round(Math.random() * (max - min) + min);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment