2014-10-18 15:42:36 +11:00

8 lines
99 B
JavaScript

"use strict";
var t = function(t) {
if (t === undefined)
t = "foo";
return t + " bar";
};