Skip to content

Instantly share code, notes, and snippets.

@sheminusminus
Last active April 25, 2016 18:14
Show Gist options
  • Save sheminusminus/4db5e41726c4d815cc88527444eebd68 to your computer and use it in GitHub Desktop.
Save sheminusminus/4db5e41726c4d815cc88527444eebd68 to your computer and use it in GitHub Desktop.
function myFunction() {
function firstGuy() {
return 'first one';
}
function secondGuy() {
return 'second one';
}
function thirdGuy() {
return 'third one';
}
var possibilities = [firstGuy, secondGuy, thirdGuy];
return possibilities[Math.floor((Math.random() * 3) + 1)]();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment