Created
February 25, 2013 20:00
-
-
Save anonymous/5032750 to your computer and use it in GitHub Desktop.
azend's theory on medical naming schemes
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
/** | |
* azend's theory on medical naming schemes | |
*/ | |
function nameMedicalCondition ( mainSymptom, severity ) { | |
var name = mainSymptom; | |
if ( is_int(severity) && severity > 5 + ( Math.floor( Math.rand() * 4 ) - 2 ) ) { | |
name += 'icul'; | |
} | |
name += 'itis'; | |
return name; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment