Files
coffeescript/documentation/js/conditionals.js

15 lines
196 B
JavaScript

var date, mood;
if (singing) mood = greatlyImproved;
if (happy && knowsIt) {
clapsHands();
chaChaCha();
} else {
showIt();
}
date = friday ? sue : jill;
options || (options = defaults);