2015-12-18 11:30:48 +01:00

19 lines
265 B
JavaScript

var t = function (f, ...items) {
var x = f;
x = items[0];
x = items[1];
};
function t(f, ...items) {
var x = f;
x = items[0];
x = items[1];
}
function u(f, g, ...items) {
var x = f;
var y = g;
x = items[0];
y = items[1];
}