2015-01-06 17:05:52 +11:00

12 lines
159 B
JavaScript

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