Created
August 7, 2014 18:09
-
-
Save THEtheChad/ed999818de8d1e38bad1 to your computer and use it in GitHub Desktop.
Not sure what to do? "Stop!" can help you!
This file contains 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 stop(){ | |
var idx = Math.floor(Math.random() * 3); | |
alert(stop.MAP[idx]); | |
} | |
stop.MAP = [ | |
'You should collaborate and listen.', | |
'It\'s Hammertime!', | |
'In the name of love.' | |
]; | |
stop(); | |
stop(); | |
stop(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment