jashkenas--coffeescript/documentation/js/conditionals.js

13 lines
239 B
JavaScript
Raw Normal View History

2009-12-21 16:41:45 +00:00
(function(){
2010-01-17 23:12:59 +00:00
var date, expensive, mood;
2009-12-21 16:41:45 +00:00
if (singing) {
mood = greatly_improved;
}
if (happy && knows_it) {
claps_hands();
cha_cha_cha();
}
2009-12-26 07:17:34 +00:00
date = friday ? sue : jill;
2009-12-21 16:41:45 +00:00
expensive = expensive || do_the_math();
2010-02-24 23:27:10 +00:00
})();