jsprint fiddle

by brigand

HTML

<script src="http://brigand.github.io/jsprint/build/output/jsprint.min.js"></script>

JavaScript

function howAwesomeIsJsPrint(ammount) {
    if (ammount > 10) { return "You're making me blush!" };
    if (ammount > 8) { return "I'll take that as a compliment." };
    if (ammount > 5) { return "Well.. okay." };
    if (ammount > 0) { return "Why are you here?" };
if (ammount <= 0) { return "Is this personal?" };
}

jsprint(howAwesomeIsJsPrint, 10);