Skip to content

Instantly share code, notes, and snippets.

@jaeschrich
Created July 13, 2013 01:26
Show Gist options
  • Save jaeschrich/5989005 to your computer and use it in GitHub Desktop.
Save jaeschrich/5989005 to your computer and use it in GitHub Desktop.
Heads or tails
function notZero(){
var i = Math.floor(Math.random()*10);
return (i!=0)?i:notZero();
}
function coin(){
return (notZero()%2 === 0)?"heads":"tails";
}
exports = module.exports = coin;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment