mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-01-14 09:17:55 -05:00
12 lines
206 B
JavaScript
12 lines
206 B
JavaScript
var date, mood, options;
|
|
if (singing) {
|
|
mood = greatlyImproved;
|
|
}
|
|
if (happy && knowsIt) {
|
|
clapsHands();
|
|
chaChaCha();
|
|
} else {
|
|
showIt();
|
|
}
|
|
date = friday ? sue : jill;
|
|
options || (options = defaults); |