Skip to content

Instantly share code, notes, and snippets.

@crongro
Created January 9, 2017 14:38
Show Gist options
  • Save crongro/b07091f02467b1af974bef1011616cc8 to your computer and use it in GitHub Desktop.
Save crongro/b07091f02467b1af974bef1011616cc8 to your computer and use it in GitHub Desktop.
(function(count) {
var resultSet = [];
function getRandom() {
var randomNumber = Math.floor(Math.random()*count)+1;
if(resultSet.indexOf(randomNumber) === -1) {
resultSet.push(randomNumber);
if(resultSet.length < count) getRandom();
return;
}
getRandom();
}
getRandom();
console.log(resultSet);
})(23);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment