2018-01-09 15:36:42 +01:00

10 lines
141 B
JavaScript

function foo() {
return bar.apply(void 0, arguments);
}
function bar(one, two, three) {
return [one, two, three];
}
foo("foo", "bar");