12 lines
154 B
JavaScript

"use strict";
function foo() {
return bar.apply(null, arguments);
}
function bar(one, two, three) {
return [one, two, three];
}
foo("foo", "bar");