Files
coffeescript/documentation/js/conditionals.js
2010-01-17 18:12:59 -05:00

12 lines
238 B
JavaScript

(function(){
var date, expensive, mood;
if (singing) {
mood = greatly_improved;
}
if (happy && knows_it) {
claps_hands();
cha_cha_cha();
}
date = friday ? sue : jill;
expensive = expensive || do_the_math();
})();