12 lines
159 B
JavaScript
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");
|