Created
February 28, 2012 00:23
-
-
Save mcandre/1928094 to your computer and use it in GitHub Desktop.
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
function dude() { | |
console.log("Dude, what does my tattoo say?"); | |
} | |
function sweet() { | |
console.log("Sweet! What about mine?"); | |
} | |
var tattoos = [dude, sweet]; | |
while (true) { | |
tattoos[Math.floor(Math.random() * 2)](); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment