6 lines
85 B
JavaScript
6 lines
85 B
JavaScript
var t = function (t) {
|
|
if (t === undefined)
|
|
t = "foo";
|
|
return t + " bar";
|
|
};
|