Skip to content

Instantly share code, notes, and snippets.

@rjoydip-zz
Created August 7, 2017 08:32
Show Gist options
  • Select an option

  • Save rjoydip-zz/31a75248268da55c771faae41916b6de to your computer and use it in GitHub Desktop.

Select an option

Save rjoydip-zz/31a75248268da55c771faae41916b6de to your computer and use it in GitHub Desktop.
var exists = [];
function randNumGen($len) {
do {
randomNumber = Math.floor(Math.random() * 5);
} while (exists[randomNumber]);
exists[randomNumber] = true;
return randomNumber;
}
console.log(randNumGen(5));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment