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

18 lines
232 B
JavaScript

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