jashkenas--coffeescript/documentation/js/default_args.js

7 lines
165 B
JavaScript

var fill;
fill = function(container, liquid) {
if (liquid == null) {
liquid = "coffee";
}
return "Filling the " + container + " with " + liquid + "...";
};