-
-
Save llkats/1927252 to your computer and use it in GitHub Desktop.
gdgt lunch decider
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.setTimeout( | |
function() { | |
(Math.floor(Math.random()*(100)) % 2 ) ? console.log('Chipotle') : console.log('Venue'); | |
}, | |
3600000 // deliberate for an hour before deciding | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment